pub struct AuthenticationInfo {
pub nextnonce: String,
pub qop: Option<AuthQop>,
pub rspauth: Option<String>,
}Expand description
The Authentication-Info header in its typed form.
Fields§
§nextnonce: String§qop: Option<AuthQop>§rspauth: Option<String>Implementations§
Source§impl AuthenticationInfo
impl AuthenticationInfo
pub fn untyped(self) -> AuthenticationInfo
Trait Implementations§
Source§impl Clone for AuthenticationInfo
impl Clone for AuthenticationInfo
Source§fn clone(&self) -> AuthenticationInfo
fn clone(&self) -> AuthenticationInfo
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AuthenticationInfo
impl Debug for AuthenticationInfo
Source§impl Display for AuthenticationInfo
impl Display for AuthenticationInfo
impl Eq for AuthenticationInfo
Source§impl From<AuthenticationInfo> for String
impl From<AuthenticationInfo> for String
Source§fn from(typed: AuthenticationInfo) -> Self
fn from(typed: AuthenticationInfo) -> Self
Converts to this type from the input type.
Source§impl From<AuthenticationInfo> for AuthenticationInfo
impl From<AuthenticationInfo> for AuthenticationInfo
Source§fn from(typed: AuthenticationInfo) -> Self
fn from(typed: AuthenticationInfo) -> Self
Converts to this type from the input type.
Source§impl From<AuthenticationInfo> for Header
impl From<AuthenticationInfo> for Header
Source§fn from(typed: AuthenticationInfo) -> Self
fn from(typed: AuthenticationInfo) -> Self
Converts to this type from the input type.
Source§impl PartialEq for AuthenticationInfo
impl PartialEq for AuthenticationInfo
impl StructuralPartialEq for AuthenticationInfo
Source§impl<'a> TryFrom<NameValueTokenizer<'a>> for AuthenticationInfo
impl<'a> TryFrom<NameValueTokenizer<'a>> for AuthenticationInfo
Source§impl<'a> TypedHeader<'a> for AuthenticationInfo
impl<'a> TypedHeader<'a> for AuthenticationInfo
type Tokenizer = NameValueTokenizer<'a>
Auto Trait Implementations§
impl Freeze for AuthenticationInfo
impl RefUnwindSafe for AuthenticationInfo
impl Send for AuthenticationInfo
impl Sync for AuthenticationInfo
impl Unpin for AuthenticationInfo
impl UnsafeUnpin for AuthenticationInfo
impl UnwindSafe for AuthenticationInfo
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