pub enum StoreEncryptionError {
Serialization(Error),
Deserialization(Error),
Json(Error),
Encryption(Error),
Random(Error),
Version(u8, u8),
Length(usize, usize),
KdfMismatch,
}
Expand description
Error type for the StoreCipher
operations.
Variants§
Serialization(Error)
Failed to serialize a value.
Deserialization(Error)
Failed to deserialize a value.
Json(Error)
Failed to deserialize or serialize a JSON value.
Encryption(Error)
Error encrypting or decrypting a value.
Random(Error)
Could not generate enough randomness for a cryptographic operation: {0}
Version(u8, u8)
Unsupported ciphertext version.
Length(usize, usize)
The ciphertext had an invalid length.
KdfMismatch
Failed to import a store cipher, the export used a passphrase while we are trying to import it using a key or vice-versa.
Trait Implementations§
source§impl Error for Error
impl Error for Error
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<EncryptedValueBase64DecodeError> for Error
impl From<EncryptedValueBase64DecodeError> for Error
source§fn from(value: EncryptedValueBase64DecodeError) -> Error
fn from(value: EncryptedValueBase64DecodeError) -> Error
Converts to this type from the input type.
source§impl From<Error> for EventCacheStoreError
impl From<Error> for EventCacheStoreError
source§fn from(source: StoreEncryptionError) -> Self
fn from(source: StoreEncryptionError) -> Self
Converts to this type from the input type.
source§impl From<Error> for StoreError
impl From<Error> for StoreError
source§fn from(source: StoreEncryptionError) -> Self
fn from(source: StoreEncryptionError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for Error
impl !RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl !UnwindSafe for Error
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
source§impl<T> Identity for Twhere
T: ?Sized,
impl<T> Identity for Twhere
T: ?Sized,
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more