Struct headers_ext::Authorization[][src]

pub struct Authorization<C: Credentials>(pub C);

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();

Methods

impl Authorization<Basic>
[src]

Create a Basic authorization header.

impl Authorization<Bearer>
[src]

Try to create a Bearer authorization header.

Trait Implementations

impl<C: Clone + Credentials> Clone for Authorization<C>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<C: PartialEq + Credentials> PartialEq for Authorization<C>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<C: Debug + Credentials> Debug for Authorization<C>
[src]

Formats the value using the given formatter. Read more

impl<C: Credentials> Header for Authorization<C>
[src]

NAME: &'static HeaderName = &::http::header::AUTHORIZATION

The name of this header.

Decode this type from a HeaderValue.

Encode this type to a HeaderMap. Read more

Auto Trait Implementations

impl<C> Send for Authorization<C> where
    C: Send

impl<C> Sync for Authorization<C> where
    C: Sync