pub struct FastResponse {
pub count: u32,
pub invalidate: bool,
}
Expand description
This is the <fast/>
element the client MUST include within its SASL2 authentication request.
Fields§
§count: u32
Servers MUST reject any authentication requests received via TLS 0-RTT payloads that do not include a ‘count’ attribute, or where the count is less than or equal to a count that has already been processed for this token. This protects against replay attacks that 0-RTT is susceptible to.
invalidate: bool
If true and the client has successfully authenticated, the server MUST invalidate the token.
Trait Implementations§
Source§impl AsXml for FastResponse
impl AsXml for FastResponse
Source§impl Clone for FastResponse
impl Clone for FastResponse
Source§fn clone(&self) -> FastResponse
fn clone(&self) -> FastResponse
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 FastResponse
impl Debug for FastResponse
Source§impl From<&FastResponse> for Element
impl From<&FastResponse> for Element
Source§fn from(other: &FastResponse) -> Self
fn from(other: &FastResponse) -> Self
Converts to this type from the input type.
Source§impl From<FastResponse> for Element
impl From<FastResponse> for Element
Source§fn from(other: FastResponse) -> Self
fn from(other: FastResponse) -> Self
Converts to this type from the input type.
Source§impl FromXml for FastResponse
impl FromXml for FastResponse
Source§impl PartialEq for FastResponse
impl PartialEq for FastResponse
Source§impl TryFrom<Element> for FastResponse
impl TryFrom<Element> for FastResponse
impl StructuralPartialEq for FastResponse
Auto Trait Implementations§
impl Freeze for FastResponse
impl RefUnwindSafe for FastResponse
impl Send for FastResponse
impl Sync for FastResponse
impl Unpin for FastResponse
impl UnwindSafe for FastResponse
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