Enum keepass_ng::error::OuterCipherConfigError
source · pub enum OuterCipherConfigError {
Cryptography(CryptographyError),
InvalidOuterCipherID {
cid: Vec<u8>,
},
}Expand description
Errors with the configuration of the outer encryption
Variants§
Trait Implementations§
source§impl Debug for OuterCipherConfigError
impl Debug for OuterCipherConfigError
source§impl Display for OuterCipherConfigError
impl Display for OuterCipherConfigError
source§impl Error for OuterCipherConfigError
impl Error for OuterCipherConfigError
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<CryptographyError> for OuterCipherConfigError
impl From<CryptographyError> for OuterCipherConfigError
source§fn from(source: CryptographyError) -> Self
fn from(source: CryptographyError) -> Self
Converts to this type from the input type.
source§impl From<OuterCipherConfigError> for DatabaseIntegrityError
impl From<OuterCipherConfigError> for DatabaseIntegrityError
source§fn from(source: OuterCipherConfigError) -> Self
fn from(source: OuterCipherConfigError) -> Self
Converts to this type from the input type.
source§impl From<OuterCipherConfigError> for DatabaseOpenError
impl From<OuterCipherConfigError> for DatabaseOpenError
source§fn from(e: OuterCipherConfigError) -> Self
fn from(e: OuterCipherConfigError) -> Self
Converts to this type from the input type.
source§impl From<OuterCipherConfigError> for Error
impl From<OuterCipherConfigError> for Error
source§fn from(source: OuterCipherConfigError) -> Self
fn from(source: OuterCipherConfigError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for OuterCipherConfigError
impl RefUnwindSafe for OuterCipherConfigError
impl Send for OuterCipherConfigError
impl Sync for OuterCipherConfigError
impl Unpin for OuterCipherConfigError
impl UnwindSafe for OuterCipherConfigError
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