pub enum Kdbx4OuterHeaderError {
UnexpectedEof,
OuterCipherConfig(OuterCipherConfigError),
CompressionConfig(CompressionConfigError),
ParseKdfConfig(VariantDictionaryError),
ParseCustomData(VariantDictionaryError),
KdfConfig(KdfConfigError),
InvalidEntry(u8),
Incomplete(&'static str),
}Variants§
UnexpectedEof
OuterCipherConfig(OuterCipherConfigError)
CompressionConfig(CompressionConfigError)
ParseKdfConfig(VariantDictionaryError)
ParseCustomData(VariantDictionaryError)
KdfConfig(KdfConfigError)
InvalidEntry(u8)
Incomplete(&'static str)
Trait Implementations§
Source§impl Debug for Kdbx4OuterHeaderError
impl Debug for Kdbx4OuterHeaderError
Source§impl Display for Kdbx4OuterHeaderError
impl Display for Kdbx4OuterHeaderError
Source§impl Error for Kdbx4OuterHeaderError
impl Error for Kdbx4OuterHeaderError
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<Kdbx4OuterHeaderError> for Kdbx4OpenError
impl From<Kdbx4OuterHeaderError> for Kdbx4OpenError
Source§fn from(source: Kdbx4OuterHeaderError) -> Self
fn from(source: Kdbx4OuterHeaderError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for Kdbx4OuterHeaderError
impl RefUnwindSafe for Kdbx4OuterHeaderError
impl Send for Kdbx4OuterHeaderError
impl Sync for Kdbx4OuterHeaderError
impl Unpin for Kdbx4OuterHeaderError
impl UnsafeUnpin for Kdbx4OuterHeaderError
impl UnwindSafe for Kdbx4OuterHeaderError
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