Enum sasl::common::scram::DeriveError
source · pub enum DeriveError {
IncompatibleHashingMethod(String, String),
IncorrectSalt,
InvalidLength,
IncompatibleIterationCount(u32, u32),
}
Available on crate feature
scram
only.Variants§
IncompatibleHashingMethod(String, String)
IncorrectSalt
InvalidLength
IncompatibleIterationCount(u32, u32)
Trait Implementations§
source§impl Debug for DeriveError
impl Debug for DeriveError
source§impl Display for DeriveError
impl Display for DeriveError
source§impl Error for DeriveError
impl Error for DeriveError
1.30.0 · 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<DeriveError> for MechanismError
impl From<DeriveError> for MechanismError
source§fn from(err: DeriveError) -> MechanismError
fn from(err: DeriveError) -> MechanismError
Converts to this type from the input type.
source§impl From<DeriveError> for ProviderError
impl From<DeriveError> for ProviderError
source§fn from(err: DeriveError) -> ProviderError
fn from(err: DeriveError) -> ProviderError
Converts to this type from the input type.
source§impl From<InvalidLength> for DeriveError
impl From<InvalidLength> for DeriveError
source§fn from(_err: InvalidLength) -> DeriveError
fn from(_err: InvalidLength) -> DeriveError
Converts to this type from the input type.
source§impl PartialEq for DeriveError
impl PartialEq for DeriveError
impl StructuralPartialEq for DeriveError
Auto Trait Implementations§
impl Freeze for DeriveError
impl RefUnwindSafe for DeriveError
impl Send for DeriveError
impl Sync for DeriveError
impl Unpin for DeriveError
impl UnwindSafe for DeriveError
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