pub struct Authorization<S>(pub S)
where
S: Scheme;
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 hyper::header::{Headers, Authorization};
let mut headers = Headers::new();
headers.set(Authorization("let me in".to_owned()));
use hyper::header::{Headers, Authorization, Basic};
let mut headers = Headers::new();
headers.set(
Authorization(
Basic {
username: "Aladdin".to_owned(),
password: Some("open sesame".to_owned())
}
)
);
use hyper::header::{Headers, Authorization, Bearer};
let mut headers = Headers::new();
headers.set(
Authorization(
Bearer {
token: "QWxhZGRpbjpvcGVuIHNlc2FtZQ".to_owned()
}
)
);
Tuple Fields§
§0: S
Trait Implementations§
source§impl<S> Clone for Authorization<S>
impl<S> Clone for Authorization<S>
source§fn clone(&self) -> Authorization<S>
fn clone(&self) -> Authorization<S>
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<S> Debug for Authorization<S>
impl<S> Debug for Authorization<S>
source§impl<S> Deref for Authorization<S>where
S: Scheme,
impl<S> Deref for Authorization<S>where
S: Scheme,
source§impl<S> DerefMut for Authorization<S>where
S: Scheme,
impl<S> DerefMut for Authorization<S>where
S: Scheme,
source§impl<S> Header for Authorization<S>
impl<S> Header for Authorization<S>
source§fn header_name() -> &'static str
fn header_name() -> &'static str
Returns the name of the header field this belongs to. Read more
source§fn parse_header(raw: &[Vec<u8>]) -> Result<Authorization<S>, Error>
fn parse_header(raw: &[Vec<u8>]) -> Result<Authorization<S>, Error>
Parse a header from a raw stream of bytes. Read more
source§impl<S> HeaderFormat for Authorization<S>
impl<S> HeaderFormat for Authorization<S>
source§impl<S> PartialEq for Authorization<S>
impl<S> PartialEq for Authorization<S>
impl<S> StructuralPartialEq for Authorization<S>where
S: Scheme,
Auto Trait Implementations§
impl<S> Freeze for Authorization<S>where
S: Freeze,
impl<S> RefUnwindSafe for Authorization<S>where
S: RefUnwindSafe,
impl<S> Send for Authorization<S>
impl<S> Sync for Authorization<S>
impl<S> Unpin for Authorization<S>where
S: Unpin,
impl<S> UnwindSafe for Authorization<S>where
S: 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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)