pub enum Mechanism {
Plain,
ScramSha1,
ScramSha1Plus,
ScramSha256,
ScramSha256Plus,
Anonymous,
}
Expand description
The list of available SASL mechanisms.
Variants§
Plain
Uses no hashing mechanism and transmit the password in clear to the server, using a single step.
ScramSha1
Challenge-based mechanism using HMAC and SHA-1, allows both the client and the server to avoid having to store the password in clear.
ScramSha1Plus
Same as ScramSha1, with the addition of channel binding.
ScramSha256
Same as ScramSha1, but using SHA-256 instead of SHA-1 as the hash function.
ScramSha256Plus
Same as ScramSha256, with the addition of channel binding.
Anonymous
Creates a temporary JID on login, which will be destroyed on disconnect.
Trait Implementations§
Source§impl AsXmlText for Mechanism
impl AsXmlText for Mechanism
Source§impl FromXmlText for Mechanism
impl FromXmlText for Mechanism
Source§impl IntoAttributeValue for Mechanism
impl IntoAttributeValue for Mechanism
Source§fn into_attribute_value(self) -> Option<String>
fn into_attribute_value(self) -> Option<String>
Turns this into an attribute string, or None if it shouldn’t be added.
impl StructuralPartialEq for Mechanism
Auto Trait Implementations§
impl Freeze for Mechanism
impl RefUnwindSafe for Mechanism
impl Send for Mechanism
impl Sync for Mechanism
impl Unpin for Mechanism
impl UnwindSafe for Mechanism
Blanket Implementations§
Source§impl<T> AsOptionalXmlText for Twhere
T: AsXmlText,
impl<T> AsOptionalXmlText for Twhere
T: AsXmlText,
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§impl<T> ToCompactString for Twhere
T: Display,
impl<T> ToCompactString for Twhere
T: Display,
Source§fn to_compact_string(&self) -> CompactString
fn to_compact_string(&self) -> CompactString
Converts the given value to a
CompactString
. Read more