pub enum Error {
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) -> Self
fn from(value: EncryptedValueBase64DecodeError) -> Self
Converts to this type from the input type.
source§impl From<Error> for Error
impl From<Error> for Error
source§fn from(source: RandomError) -> Self
fn from(source: RandomError) -> Self
Converts to this type from the input type.
source§impl From<Error> for Error
impl From<Error> for Error
source§fn from(source: EncryptionError) -> Self
fn from(source: EncryptionError) -> 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