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 AsXml for DefinedCondition
impl AsXml for DefinedCondition
source§type ItemIter<'xso_proc_as_xml_iter_lifetime> = DefinedConditionAsXmlIterator<'xso_proc_as_xml_iter_lifetime>
type ItemIter<'xso_proc_as_xml_iter_lifetime> = DefinedConditionAsXmlIterator<'xso_proc_as_xml_iter_lifetime>
The iterator type. Read more
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(other: DefinedCondition) -> Self
fn from(other: DefinedCondition) -> Self
Converts to this type from the input type.
source§impl FromXml for DefinedCondition
impl FromXml for DefinedCondition
source§type Builder = DefinedConditionFromXmlBuilder
type Builder = DefinedConditionFromXmlBuilder
A builder type used to construct the element. Read more
source§fn from_events(
name: QName,
attrs: AttrMap,
) -> Result<Self::Builder, FromEventsError>
fn from_events( name: QName, attrs: AttrMap, ) -> Result<Self::Builder, FromEventsError>
Attempt to initiate the streamed construction of this struct from XML. Read more
source§impl PartialEq for DefinedCondition
impl PartialEq for DefinedCondition
source§impl TryFrom<Element> for DefinedCondition
impl TryFrom<Element> for DefinedCondition
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)