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<Authorization<C>> for Authorization<C>
impl<C: PartialEq + Credentials> PartialEq<Authorization<C>> for Authorization<C>
source§fn eq(&self, other: &Authorization<C>) -> bool
fn eq(&self, other: &Authorization<C>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.