pub struct Authenticate {
pub mechanism: String,
pub initial_response: Option<Vec<u8>>,
pub user_agent: UserAgent,
pub payloads: Vec<Element>,
}
Expand description
Client authentication request
Fields§
§mechanism: String
Chosen SASL mechanism
initial_response: Option<Vec<u8>>
SASL response
user_agent: UserAgent
Information about client software
payloads: Vec<Element>
Extra untyped payloads
Trait Implementations§
Source§impl AsXml for Authenticate
impl AsXml for Authenticate
Source§impl Clone for Authenticate
impl Clone for Authenticate
Source§fn clone(&self) -> Authenticate
fn clone(&self) -> Authenticate
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 Authenticate
impl Debug for Authenticate
Source§impl From<&Authenticate> for Element
impl From<&Authenticate> for Element
Source§fn from(other: &Authenticate) -> Self
fn from(other: &Authenticate) -> Self
Converts to this type from the input type.
Source§impl From<Authenticate> for Element
impl From<Authenticate> for Element
Source§fn from(other: Authenticate) -> Self
fn from(other: Authenticate) -> Self
Converts to this type from the input type.
Source§impl FromXml for Authenticate
impl FromXml for Authenticate
Source§impl PartialEq for Authenticate
impl PartialEq for Authenticate
Source§impl TryFrom<Element> for Authenticate
impl TryFrom<Element> for Authenticate
impl StructuralPartialEq for Authenticate
Auto Trait Implementations§
impl Freeze for Authenticate
impl RefUnwindSafe for Authenticate
impl Send for Authenticate
impl Sync for Authenticate
impl Unpin for Authenticate
impl UnwindSafe for Authenticate
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