pub struct Challenge {
pub scheme: String,
pub token68: Option<String>,
pub params: Vec<AuthParam>,
}Expand description
Parsed authentication challenge.
Fields§
§scheme: StringAuthentication scheme token, for example Basic.
token68: Option<String>Optional token68 payload.
params: Vec<AuthParam>Optional list of auth-params.
Trait Implementations§
impl Eq for Challenge
impl StructuralPartialEq for Challenge
Auto Trait Implementations§
impl Freeze for Challenge
impl RefUnwindSafe for Challenge
impl Send for Challenge
impl Sync for Challenge
impl Unpin for Challenge
impl UnsafeUnpin for Challenge
impl UnwindSafe for Challenge
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