Enum keepass_ng::error::VariantDictionaryError
source · pub enum VariantDictionaryError {
InvalidVersion {
version: u16,
},
InvalidValueType {
value_type: u8,
},
MissingKey {
key: String,
},
Mistyped {
key: String,
},
NotTerminated,
}Expand description
Errors while parsing a VariantDictionary
Variants§
Trait Implementations§
source§impl Debug for VariantDictionaryError
impl Debug for VariantDictionaryError
source§impl Display for VariantDictionaryError
impl Display for VariantDictionaryError
source§impl Error for VariantDictionaryError
impl Error for VariantDictionaryError
1.30.0 · 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<VariantDictionaryError> for DatabaseIntegrityError
impl From<VariantDictionaryError> for DatabaseIntegrityError
source§fn from(source: VariantDictionaryError) -> Self
fn from(source: VariantDictionaryError) -> Self
Converts to this type from the input type.
source§impl From<VariantDictionaryError> for DatabaseOpenError
impl From<VariantDictionaryError> for DatabaseOpenError
source§fn from(e: VariantDictionaryError) -> Self
fn from(e: VariantDictionaryError) -> Self
Converts to this type from the input type.
source§impl From<VariantDictionaryError> for Error
impl From<VariantDictionaryError> for Error
source§fn from(source: VariantDictionaryError) -> Self
fn from(source: VariantDictionaryError) -> 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 VariantDictionaryError
impl RefUnwindSafe for VariantDictionaryError
impl Send for VariantDictionaryError
impl Sync for VariantDictionaryError
impl Unpin for VariantDictionaryError
impl UnwindSafe for VariantDictionaryError
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