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>,
}
Expand description
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§
Source§impl Challenge for DigestChallenge
impl Challenge for DigestChallenge
fn challenge_name() -> &'static str
fn from_raw(raw: RawChallenge) -> Option<Self>
fn into_raw(self) -> RawChallenge
Source§impl Clone for DigestChallenge
impl Clone for DigestChallenge
Source§fn clone(&self) -> DigestChallenge
fn clone(&self) -> DigestChallenge
Returns a duplicate 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 DigestChallenge
impl Debug for DigestChallenge
Source§impl Hash for DigestChallenge
impl Hash for DigestChallenge
Source§impl PartialEq for DigestChallenge
impl PartialEq for DigestChallenge
impl Eq for DigestChallenge
impl StructuralPartialEq for DigestChallenge
Auto Trait Implementations§
impl Freeze for DigestChallenge
impl RefUnwindSafe for DigestChallenge
impl Send for DigestChallenge
impl Sync for DigestChallenge
impl Unpin for DigestChallenge
impl UnwindSafe for DigestChallenge
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