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)
InvalidKeyLength(InvalidLength)
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)>
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<InvalidLength> for MechanismError
impl From<InvalidLength> for MechanismError
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
source§fn eq(&self, other: &MechanismError) -> bool
fn eq(&self, other: &MechanismError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for MechanismError
Auto Trait Implementations§
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