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 {0}
Deserialization(Error)
Failed to deserialize a value {0}
Json(Error)
Failed to deserialize or serialize a JSON value {0}
Encryption(Error)
Error encrypting or decrypting a value {0}
Random(Error)
Couldn’t generate enough randomness for a cryptographic operation: {0}
Version(u8, u8)
Unsupported ciphertext version, expected {0}, got {1}
Length(usize, usize)
The ciphertext had an invalid length, expected {0}, got {1}
KdfMismatch
Failed to import a store cipher, the export used a passphrase while we’re 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()
Auto Trait Implementations§
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