Struct hyper::header::Authorization [−][src]
pub struct Authorization<S: Scheme>(pub S);
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
Format a header to be output into a TcpStream. Read more
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
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
Mutably borrows from an owned value. Read more