Enum sasl::server::MechanismError
source · pub enum MechanismError {
Show 21 variants
NoUsernameSpecified,
ErrorDecodingUsername,
NoPasswordSpecified,
ErrorDecodingPassword,
ValidatorError(ValidatorError),
FailedToDecodeMessage,
ChannelBindingNotSupported,
ChannelBindingIsSupported,
ChannelBindingMechanismIncorrect,
CannotDecodeInitialMessage,
NoUsername,
NoNonce,
FailedToGenerateNonce,
ProviderError(ProviderError),
CannotDecodeResponse,
InvalidKeyLength(InvalidLength),
RandomFailure(Error),
NoProof,
CannotDecodeProof,
AuthenticationFailed,
SaslSessionAlreadyOver,
}
Variants§
NoUsernameSpecified
ErrorDecodingUsername
NoPasswordSpecified
ErrorDecodingPassword
ValidatorError(ValidatorError)
FailedToDecodeMessage
ChannelBindingNotSupported
ChannelBindingIsSupported
ChannelBindingMechanismIncorrect
CannotDecodeInitialMessage
NoUsername
NoNonce
FailedToGenerateNonce
ProviderError(ProviderError)
CannotDecodeResponse
InvalidKeyLength(InvalidLength)
RandomFailure(Error)
NoProof
CannotDecodeProof
AuthenticationFailed
SaslSessionAlreadyOver
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
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<Error> for MechanismError
impl From<Error> for MechanismError
source§fn from(err: Error) -> MechanismError
fn from(err: Error) -> 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 From<ProviderError> for MechanismError
impl From<ProviderError> for MechanismError
source§fn from(err: ProviderError) -> MechanismError
fn from(err: ProviderError) -> MechanismError
Converts to this type from the input type.
source§impl From<ValidatorError> for MechanismError
impl From<ValidatorError> for MechanismError
source§fn from(err: ValidatorError) -> MechanismError
fn from(err: ValidatorError) -> 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