Enum bcrypt::BcryptError
source · pub enum BcryptError {
Io(Error),
CostNotAllowed(u32),
InvalidCost(String),
InvalidPrefix(String),
InvalidHash(String),
InvalidSaltLen(usize),
InvalidBase64(DecodeError),
Rand(Error),
}
Expand description
All the errors we can encounter while hashing/verifying passwords
Variants§
Io(Error)
CostNotAllowed(u32)
InvalidCost(String)
InvalidPrefix(String)
InvalidHash(String)
InvalidSaltLen(usize)
InvalidBase64(DecodeError)
Rand(Error)
Trait Implementations§
source§impl Debug for BcryptError
impl Debug for BcryptError
source§impl Display for BcryptError
impl Display for BcryptError
source§impl Error for BcryptError
impl Error for BcryptError
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<DecodeError> for BcryptError
impl From<DecodeError> for BcryptError
source§fn from(f: DecodeError) -> BcryptError
fn from(f: DecodeError) -> BcryptError
Converts to this type from the input type.
source§impl From<Error> for BcryptError
impl From<Error> for BcryptError
source§fn from(f: Error) -> BcryptError
fn from(f: Error) -> BcryptError
Converts to this type from the input type.
source§impl From<Error> for BcryptError
impl From<Error> for BcryptError
source§fn from(f: Error) -> BcryptError
fn from(f: Error) -> BcryptError
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for BcryptError
impl !RefUnwindSafe for BcryptError
impl Send for BcryptError
impl Sync for BcryptError
impl Unpin for BcryptError
impl !UnwindSafe for BcryptError
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