pub struct DigestBuilder<'a> { /* private fields */ }Available on crate feature
api only.Implementations§
Source§impl<'a> DigestBuilder<'a>
impl<'a> DigestBuilder<'a>
pub fn new( username: &'a str, realm: &'a str, nonce: &'a str, uri: &'a str, response: &'a str, ) -> Self
pub fn algorithm(self, algorithm: &'a str) -> Self
pub fn cnonce(self, cnonce: &'a str) -> Self
pub fn opaque(self, opaque: &'a str) -> Self
pub fn qop(self, qop: &'a str) -> Self
pub fn nc(self, nc: &'a str) -> Self
pub fn build(self) -> String
Trait Implementations§
Source§impl<'a> Clone for DigestBuilder<'a>
impl<'a> Clone for DigestBuilder<'a>
Source§fn clone(&self) -> DigestBuilder<'a>
fn clone(&self) -> DigestBuilder<'a>
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<'a> Debug for DigestBuilder<'a>
impl<'a> Debug for DigestBuilder<'a>
Source§impl Display for DigestBuilder<'_>
impl Display for DigestBuilder<'_>
Source§impl<'a> Hash for DigestBuilder<'a>
impl<'a> Hash for DigestBuilder<'a>
Source§impl<'a> PartialEq for DigestBuilder<'a>
impl<'a> PartialEq for DigestBuilder<'a>
impl<'a> Eq for DigestBuilder<'a>
impl<'a> StructuralPartialEq for DigestBuilder<'a>
Auto Trait Implementations§
impl<'a> Freeze for DigestBuilder<'a>
impl<'a> RefUnwindSafe for DigestBuilder<'a>
impl<'a> Send for DigestBuilder<'a>
impl<'a> Sync for DigestBuilder<'a>
impl<'a> Unpin for DigestBuilder<'a>
impl<'a> UnwindSafe for DigestBuilder<'a>
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.