Struct headers::authorization::Authorization
source · pub struct Authorization<C: Credentials>(pub C);
Expand description
Authorization
header, defined in RFC7235
The Authorization
header field allows a user agent to authenticate
itself with an origin server – usually, but not necessarily, after
receiving a 401 (Unauthorized) response. Its value consists of
credentials containing the authentication information of the user
agent for the realm of the resource being requested.
§ABNF
Authorization = credentials
§Example values
Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ==
Bearer fpKL54jvWmEGVoRdCNjG
§Examples
use headers::Authorization;
let basic = Authorization::basic("Aladdin", "open sesame");
let bearer = Authorization::bearer("some-opaque-token").unwrap();
Tuple Fields§
§0: C
Implementations§
source§impl Authorization<Basic>
impl Authorization<Basic>
Trait Implementations§
source§impl<C: Clone + Credentials> Clone for Authorization<C>
impl<C: Clone + Credentials> Clone for Authorization<C>
source§fn clone(&self) -> Authorization<C>
fn clone(&self) -> Authorization<C>
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<C: Debug + Credentials> Debug for Authorization<C>
impl<C: Debug + Credentials> Debug for Authorization<C>
source§impl<C: Credentials> Header for Authorization<C>
impl<C: Credentials> Header for Authorization<C>
source§impl<C: PartialEq + Credentials> PartialEq for Authorization<C>
impl<C: PartialEq + Credentials> PartialEq for Authorization<C>
impl<C: Credentials> StructuralPartialEq for Authorization<C>
Auto Trait Implementations§
impl<C> Freeze for Authorization<C>where
C: Freeze,
impl<C> RefUnwindSafe for Authorization<C>where
C: RefUnwindSafe,
impl<C> Send for Authorization<C>where
C: Send,
impl<C> Sync for Authorization<C>where
C: Sync,
impl<C> Unpin for Authorization<C>where
C: Unpin,
impl<C> UnwindSafe for Authorization<C>where
C: UnwindSafe,
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)