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