pub struct BasicChallenge {
pub realm: String,
}
Expand description
The challenge for Basic authentication
Fields§
§realm: String
realm of the authentication
Trait Implementations§
Source§impl Challenge for BasicChallenge
impl Challenge for BasicChallenge
fn challenge_name() -> &'static str
fn from_raw(raw: RawChallenge) -> Option<Self>
fn into_raw(self) -> RawChallenge
Source§impl Clone for BasicChallenge
impl Clone for BasicChallenge
Source§fn clone(&self) -> BasicChallenge
fn clone(&self) -> BasicChallenge
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 BasicChallenge
impl Debug for BasicChallenge
Source§impl Hash for BasicChallenge
impl Hash for BasicChallenge
Source§impl PartialEq for BasicChallenge
impl PartialEq for BasicChallenge
impl Eq for BasicChallenge
impl StructuralPartialEq for BasicChallenge
Auto Trait Implementations§
impl Freeze for BasicChallenge
impl RefUnwindSafe for BasicChallenge
impl Send for BasicChallenge
impl Sync for BasicChallenge
impl Unpin for BasicChallenge
impl UnwindSafe for BasicChallenge
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