Enum xmpp_parsers::sasl::DefinedCondition
source · pub enum DefinedCondition {
Aborted,
AccountDisabled,
CredentialsExpired,
EncryptionRequired,
IncorrectEncoding,
InvalidAuthzid,
InvalidMechanism,
MalformedRequest,
MechanismTooWeak,
NotAuthorized,
TemporaryAuthFailure,
}
Expand description
List of possible failure conditions for SASL.
Variants§
Aborted
The client aborted the authentication with abort.
AccountDisabled
The account the client is trying to authenticate against has been disabled.
CredentialsExpired
The credentials for this account have expired.
EncryptionRequired
You must enable StartTLS or use direct TLS before using this authentication mechanism.
IncorrectEncoding
The base64 data sent by the client is invalid.
InvalidAuthzid
The authzid provided by the client is invalid.
InvalidMechanism
The client tried to use an invalid mechanism, or none.
MalformedRequest
The client sent a bad request.
MechanismTooWeak
The mechanism selected is weaker than what the server allows.
NotAuthorized
The credentials provided are invalid.
TemporaryAuthFailure
The server encountered an issue which may be fixed later, the client should retry at some point.
Trait Implementations§
source§impl Clone for DefinedCondition
impl Clone for DefinedCondition
source§fn clone(&self) -> DefinedCondition
fn clone(&self) -> DefinedCondition
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for DefinedCondition
impl Debug for DefinedCondition
source§impl From<DefinedCondition> for Element
impl From<DefinedCondition> for Element
source§fn from(elem: DefinedCondition) -> Element
fn from(elem: DefinedCondition) -> Element
Converts to this type from the input type.
source§impl PartialEq for DefinedCondition
impl PartialEq for DefinedCondition
source§fn eq(&self, other: &DefinedCondition) -> bool
fn eq(&self, other: &DefinedCondition) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl TryFrom<Element> for DefinedCondition
impl TryFrom<Element> for DefinedCondition
§type Error = FromElementError
type Error = FromElementError
The type returned in the event of a conversion error.
source§fn try_from(elem: Element) -> Result<DefinedCondition, FromElementError>
fn try_from(elem: Element) -> Result<DefinedCondition, FromElementError>
Performs the conversion.
impl StructuralPartialEq for DefinedCondition
Auto Trait Implementations§
impl Freeze for DefinedCondition
impl RefUnwindSafe for DefinedCondition
impl Send for DefinedCondition
impl Sync for DefinedCondition
impl Unpin for DefinedCondition
impl UnwindSafe for DefinedCondition
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