pub struct AuthParam {
pub name: String,
pub value: String,
}Expand description
A single auth-param pair parsed from a challenge.
Fields§
§name: StringParameter name.
value: StringParameter value with surrounding quotes removed when applicable.
Trait Implementations§
impl Eq for AuthParam
impl StructuralPartialEq for AuthParam
Auto Trait Implementations§
impl Freeze for AuthParam
impl RefUnwindSafe for AuthParam
impl Send for AuthParam
impl Sync for AuthParam
impl Unpin for AuthParam
impl UnsafeUnpin for AuthParam
impl UnwindSafe for AuthParam
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