Enum sasl::client::MechanismError
source · pub enum MechanismError {
Show 16 variants
AnonymousRequiresNoCredentials,
PlainRequiresUsername,
PlainRequiresPlaintextPassword,
CannotGenerateNonce,
ScramRequiresUsername,
ScramRequiresPassword,
CannotDecodeChallenge,
NoServerNonce,
NoServerSalt,
NoServerIterations,
DeriveError(DeriveError),
InvalidKeyLength(InvalidLength),
InvalidState,
CannotDecodeSuccessResponse,
InvalidSignatureInSuccessResponse,
NoSignatureInSuccessResponse,
}
Variants§
AnonymousRequiresNoCredentials
PlainRequiresUsername
PlainRequiresPlaintextPassword
CannotGenerateNonce
ScramRequiresUsername
ScramRequiresPassword
CannotDecodeChallenge
NoServerNonce
NoServerSalt
NoServerIterations
DeriveError(DeriveError)
Available on crate feature
scram
only.InvalidKeyLength(InvalidLength)
Available on crate feature
scram
only.InvalidState
CannotDecodeSuccessResponse
InvalidSignatureInSuccessResponse
NoSignatureInSuccessResponse
Trait Implementations§
source§impl Debug for MechanismError
impl Debug for MechanismError
source§impl Display for MechanismError
impl Display for MechanismError
source§impl Error for MechanismError
impl Error for MechanismError
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
Available on crate feature scram
only.
impl From<DeriveError> for MechanismError
Available on crate feature
scram
only.source§fn from(err: DeriveError) -> MechanismError
fn from(err: DeriveError) -> MechanismError
Converts to this type from the input type.
source§impl From<InvalidLength> for MechanismError
Available on crate feature scram
only.
impl From<InvalidLength> for MechanismError
Available on crate feature
scram
only.source§fn from(err: InvalidLength) -> MechanismError
fn from(err: InvalidLength) -> MechanismError
Converts to this type from the input type.
source§impl PartialEq for MechanismError
impl PartialEq for MechanismError
impl StructuralPartialEq for MechanismError
Auto Trait Implementations§
impl Freeze for MechanismError
impl RefUnwindSafe for MechanismError
impl Send for MechanismError
impl Sync for MechanismError
impl Unpin for MechanismError
impl UnwindSafe for MechanismError
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