pub struct DigestCredentials {
pub password: Vec<u8>,
pub client_data: Option<Vec<u8>>,
pub client_nonce: Option<(Vec<u8>, u32)>,
pub entity_digest: Option<Vec<u8>>,
pub extra_params: Vec<(Vec<u8>, Vec<u8>)>,
}
Fields§
§password: Vec<u8>
§client_data: Option<Vec<u8>>
§client_nonce: Option<(Vec<u8>, u32)>
§entity_digest: Option<Vec<u8>>
§extra_params: Vec<(Vec<u8>, Vec<u8>)>
Auto Trait Implementations§
impl Freeze for DigestCredentials
impl RefUnwindSafe for DigestCredentials
impl Send for DigestCredentials
impl Sync for DigestCredentials
impl Unpin for DigestCredentials
impl UnwindSafe for DigestCredentials
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