pub struct DigestResponse {
pub username: String,
pub realm: String,
pub nonce: String,
pub uri: String,
pub response: String,
pub algorithm: DigestAlgorithm,
pub opaque: Option<String>,
pub qop: Option<String>,
pub nc: Option<String>,
pub cnonce: Option<String>,
}Expand description
Computed digest authentication response.
Fields§
§username: String§realm: String§nonce: String§uri: String§response: String§algorithm: DigestAlgorithm§opaque: Option<String>§qop: Option<String>§nc: Option<String>§cnonce: Option<String>Trait Implementations§
Source§impl Clone for DigestResponse
impl Clone for DigestResponse
Source§fn clone(&self) -> DigestResponse
fn clone(&self) -> DigestResponse
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 DigestResponse
impl Debug for DigestResponse
Auto Trait Implementations§
impl Freeze for DigestResponse
impl RefUnwindSafe for DigestResponse
impl Send for DigestResponse
impl Sync for DigestResponse
impl Unpin for DigestResponse
impl UnsafeUnpin for DigestResponse
impl UnwindSafe for DigestResponse
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