pub enum PasswordError {
    Base64Decoding,
    InvalidFormat,
    InvalidKeyLength,
    InvalidLength,
    InvalidSaltLength,
    UnsupportedAlgorithm(String),
    NoDecoderFound(String),
    ParsingFailed,
}Variants§
Base64Decoding
InvalidFormat
InvalidKeyLength
InvalidLength
InvalidSaltLength
UnsupportedAlgorithm(String)
NoDecoderFound(String)
ParsingFailed
Trait Implementations§
Source§impl Clone for PasswordError
 
impl Clone for PasswordError
Source§fn clone(&self) -> PasswordError
 
fn clone(&self) -> PasswordError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moreSource§impl Debug for PasswordError
 
impl Debug for PasswordError
Source§impl Display for PasswordError
 
impl Display for PasswordError
Source§impl From<DecodeError> for PasswordError
 
impl From<DecodeError> for PasswordError
Source§impl From<ParseIntError> for PasswordError
 
impl From<ParseIntError> for PasswordError
Source§fn from(_err: ParseIntError) -> Self
 
fn from(_err: ParseIntError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for PasswordError
 
impl PartialEq for PasswordError
impl StructuralPartialEq for PasswordError
Auto Trait Implementations§
impl Freeze for PasswordError
impl RefUnwindSafe for PasswordError
impl Send for PasswordError
impl Sync for PasswordError
impl Unpin for PasswordError
impl UnwindSafe for PasswordError
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
    T: 'a,
 
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
    T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
    T: 'a,
 
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
    T: 'a,
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