pub enum OpenError {
NonKeepassFormat,
UnsupportedFileFormat,
UnsupportedMajorVersion(u16),
InvalidHeader(HeaderError),
Io(Error),
}
Expand description
Errors encountered loading a database prior to decryption
Variants§
NonKeepassFormat
Keepass database magic number missing
UnsupportedFileFormat
Second header magic number is not that for kdbx (possibly kdb)
UnsupportedMajorVersion(u16)
The KDBX version is not v3 or v4
InvalidHeader(HeaderError)
There was some error parsing the unencrypted database header
Io(Error)
Error encountered reading database
Trait Implementations§
Source§impl Error for OpenError
impl Error for OpenError
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<HeaderError> for OpenError
impl From<HeaderError> for OpenError
Source§fn from(source: HeaderError) -> Self
fn from(source: HeaderError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for OpenError
impl !RefUnwindSafe for OpenError
impl Send for OpenError
impl Sync for OpenError
impl Unpin for OpenError
impl !UnwindSafe for OpenError
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