#[non_exhaustive]pub enum KdfConfigError {
InvalidKDFVersion {
version: u32,
},
InvalidKDFUUID {
uuid: Vec<u8>,
},
VariantDictionary(VariantDictionaryError),
}Expand description
Errors with the configuration of the Key Derivation Function
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
InvalidKDFVersion
An invalid KDF version was specified in the database
InvalidKDFUUID
An invalid KDF UUID was specified in the database
VariantDictionary(VariantDictionaryError)
Errors parsing KDF parameters from the variant dictionary
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)>
Returns 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 Kdbx4OuterHeaderError
impl From<KdfConfigError> for Kdbx4OuterHeaderError
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 UnsafeUnpin 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