pub struct DigestChallenge {
pub realm: Vec<u8>,
pub nonce: Vec<u8>,
pub algorithm: Vec<u8>,
pub domain: Option<Vec<u8>>,
pub opaque: Option<Vec<u8>>,
pub qop: Option<Vec<u8>>,
}
Fields§
§realm: Vec<u8>
§nonce: Vec<u8>
§algorithm: Vec<u8>
§domain: Option<Vec<u8>>
§opaque: Option<Vec<u8>>
§qop: Option<Vec<u8>>
Implementations§
Source§impl DigestChallenge
impl DigestChallenge
pub fn as_challenge_param(&self) -> DigestChallengeParams<'_>
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