pub struct Authorization<C>(pub C)
where
C: Credentials;Available on crate feature
fullstack only.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: CImplementations§
Source§impl Authorization<Basic>
impl Authorization<Basic>
Trait Implementations§
Source§impl<C> Clone for Authorization<C>where
C: Clone + Credentials,
impl<C> Clone for Authorization<C>where
C: Clone + Credentials,
Source§fn clone(&self) -> Authorization<C>
fn clone(&self) -> Authorization<C>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 for Authorization<C>where
C: Debug + Credentials,
impl<C> Debug for Authorization<C>where
C: Debug + Credentials,
Source§impl<C> Header for Authorization<C>where
C: Credentials,
impl<C> Header for Authorization<C>where
C: Credentials,
Source§fn name() -> &'static HeaderName
fn name() -> &'static HeaderName
The name of this header.
Source§fn decode<'i, I>(values: &mut I) -> Result<Authorization<C>, Error>where
I: Iterator<Item = &'i HeaderValue>,
fn decode<'i, I>(values: &mut I) -> Result<Authorization<C>, Error>where
I: Iterator<Item = &'i HeaderValue>,
Decode this type from an iterator of
HeaderValues.Source§impl<C> PartialEq for Authorization<C>where
C: PartialEq + Credentials,
impl<C> PartialEq for Authorization<C>where
C: PartialEq + Credentials,
Source§fn eq(&self, other: &Authorization<C>) -> bool
fn eq(&self, other: &Authorization<C>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<C> StructuralPartialEq for Authorization<C>where
C: Credentials,
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> UnsafeUnpin for Authorization<C>where
C: UnsafeUnpin,
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§impl<T> InitializeFromFunction<T> for T
impl<T> InitializeFromFunction<T> for T
Source§fn initialize_from_function(f: fn() -> T) -> T
fn initialize_from_function(f: fn() -> T) -> T
Create an instance of this type from an initialization function
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<Ret> SpawnIfAsync<(), Ret> for Ret
impl<Ret> SpawnIfAsync<(), Ret> for Ret
Source§impl<T, O> SuperFrom<T> for Owhere
O: From<T>,
impl<T, O> SuperFrom<T> for Owhere
O: From<T>,
Source§fn super_from(input: T) -> O
fn super_from(input: T) -> O
Convert from a type to another type.
Source§impl<T, O, M> SuperInto<O, M> for Twhere
O: SuperFrom<T, M>,
impl<T, O, M> SuperInto<O, M> for Twhere
O: SuperFrom<T, M>,
Source§fn super_into(self) -> O
fn super_into(self) -> O
Convert from a type to another type.