pub struct BasicClient { /* private fields */ }
Available on crate feature
basic-scheme
only.Expand description
Client for a Basic
challenge, as in
RFC 7617.
This implementation always uses UTF-8
. Thus it doesn’t use or store the
charset
parameter, which the RFC only allows to be set to UTF-8
anyway.
Implementations§
Source§impl BasicClient
impl BasicClient
Trait Implementations§
Source§impl Clone for BasicClient
impl Clone for BasicClient
Source§fn clone(&self) -> BasicClient
fn clone(&self) -> BasicClient
Returns a copy 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 BasicClient
impl Debug for BasicClient
Source§impl PartialEq for BasicClient
impl PartialEq for BasicClient
Source§impl TryFrom<&ChallengeRef<'_>> for BasicClient
impl TryFrom<&ChallengeRef<'_>> for BasicClient
impl Eq for BasicClient
impl StructuralPartialEq for BasicClient
Auto Trait Implementations§
impl Freeze for BasicClient
impl RefUnwindSafe for BasicClient
impl Send for BasicClient
impl Sync for BasicClient
impl Unpin for BasicClient
impl UnwindSafe for BasicClient
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