Struct www_authenticate::DigestChallenge [−][src]
pub struct DigestChallenge {
pub realm: Option<String>,
pub domain: Option<Vec<Url>>,
pub nonce: Option<String>,
pub opaque: Option<String>,
pub stale: Option<bool>,
pub algorithm: Option<Algorithm>,
pub qop: Option<Vec<Qop>>,
pub userhash: Option<bool>,
}The challenge for Digest authentication
Fields
realm: Option<String>
realm of the authentication
domain: Option<Vec<Url>>
domains of the authentication
nonce: Option<String>
the nonce used in authentiaction
opaque: Option<String>
a string data specified by the server
stale: Option<bool>
a flag indicating that the previous request from the client was rejected because the nonce value was stale.
algorithm: Option<Algorithm>
the algorithm used to produce the digest and unkeyed digest. if not present, it is assumed to be Md5
qop: Option<Vec<Qop>>
"quality of protection" values supported by the server
userhash: Option<bool>
this is an OPTIONAL parameter that is used by the server to indicate that it supports username hashing. default is false if not present
Trait Implementations
impl Debug for DigestChallenge[src]
impl Debug for DigestChallengefn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Clone for DigestChallenge[src]
impl Clone for DigestChallengefn clone(&self) -> DigestChallenge[src]
fn clone(&self) -> DigestChallengeReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl PartialEq for DigestChallenge[src]
impl PartialEq for DigestChallengefn eq(&self, other: &DigestChallenge) -> bool[src]
fn eq(&self, other: &DigestChallenge) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &DigestChallenge) -> bool[src]
fn ne(&self, other: &DigestChallenge) -> boolThis method tests for !=.
impl Eq for DigestChallenge[src]
impl Eq for DigestChallengeimpl Hash for DigestChallenge[src]
impl Hash for DigestChallengefn hash<__H: Hasher>(&self, state: &mut __H)[src]
fn hash<__H: Hasher>(&self, state: &mut __H)Feeds this value into the given [Hasher]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, Feeds a slice of this type into the given [Hasher]. Read more
impl Challenge for DigestChallenge[src]
impl Challenge for DigestChallengefn challenge_name() -> &'static str[src]
fn challenge_name() -> &'static strfn from_raw(raw: RawChallenge) -> Option<Self>[src]
fn from_raw(raw: RawChallenge) -> Option<Self>fn into_raw(self) -> RawChallenge[src]
fn into_raw(self) -> RawChallengeAuto Trait Implementations
impl Send for DigestChallenge
impl Send for DigestChallengeimpl Sync for DigestChallenge
impl Sync for DigestChallenge