Struct headers_ext::ProxyAuthorization[][src]

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

Proxy-Authorization header, defined in RFC7235

The Proxy-Authorization header field allows a user agent to authenticate itself with an HTTP proxy -- usually, but not necessarily, after receiving a 407 (Proxy Authentication Required) response and the Proxy-Authenticate header. Its value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.

ABNF

Proxy-Authorization = credentials

Example values

  • Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ==
  • Bearer fpKL54jvWmEGVoRdCNjG

Examples

Trait Implementations

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<C: PartialEq + Credentials> PartialEq for ProxyAuthorization<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 ProxyAuthorization<C>
[src]

Formats the value using the given formatter. Read more

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

NAME: &'static HeaderName = &::http::header::PROXY_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 ProxyAuthorization<C> where
    C: Send

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