Enum keepass_ng::error::KdfConfigError
source · pub enum KdfConfigError {
InvalidKDFVersion {
version: u32,
},
InvalidKDFUUID {
uuid: Vec<u8>,
},
VariantDictionary(VariantDictionaryError),
}Expand description
Errors with the configuration of the Key Derivation Function
Variants§
Trait Implementations§
source§impl Debug for KdfConfigError
impl Debug for KdfConfigError
source§impl Display for KdfConfigError
impl Display for KdfConfigError
source§impl Error for KdfConfigError
impl Error for KdfConfigError
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<KdfConfigError> for DatabaseIntegrityError
impl From<KdfConfigError> for DatabaseIntegrityError
source§fn from(source: KdfConfigError) -> Self
fn from(source: KdfConfigError) -> Self
Converts to this type from the input type.
source§impl From<KdfConfigError> for DatabaseOpenError
impl From<KdfConfigError> for DatabaseOpenError
source§fn from(e: KdfConfigError) -> Self
fn from(e: KdfConfigError) -> Self
Converts to this type from the input type.
source§impl From<KdfConfigError> for Error
impl From<KdfConfigError> for Error
source§fn from(source: KdfConfigError) -> Self
fn from(source: KdfConfigError) -> Self
Converts to this type from the input type.
source§impl From<VariantDictionaryError> for KdfConfigError
impl From<VariantDictionaryError> for KdfConfigError
source§fn from(source: VariantDictionaryError) -> Self
fn from(source: VariantDictionaryError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for KdfConfigError
impl RefUnwindSafe for KdfConfigError
impl Send for KdfConfigError
impl Sync for KdfConfigError
impl Unpin for KdfConfigError
impl UnwindSafe for KdfConfigError
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