[−][src]Struct typed_headers::ProxyAuthorization
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
Authorization = credentials
Example values
Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ==Bearer fpKL54jvWmEGVoRdCNjG
Methods from Deref<Target = Credentials>
pub fn scheme(&self) -> &AuthScheme[src]
Returns the auth-scheme associated with the credentials.
pub fn token68(&self) -> Option<&Token68>[src]
Returns the token68 value associated with the credentials if present.
pub fn as_bearer(&self) -> Option<&Token68>[src]
Returns the bearer token if this contains Bearer credentials.
Trait Implementations
impl Header for ProxyAuthorization[src]
fn name() -> &'static HeaderName[src]
fn from_values(
values: &mut ValueIter<HeaderValue>
) -> Result<Option<ProxyAuthorization>, Error>[src]
values: &mut ValueIter<HeaderValue>
) -> Result<Option<ProxyAuthorization>, Error>
fn to_values(&self, values: &mut ToValues)[src]
impl Clone for ProxyAuthorization[src]
fn clone(&self) -> ProxyAuthorization[src]
default fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl PartialEq<ProxyAuthorization> for ProxyAuthorization[src]
fn eq(&self, other: &ProxyAuthorization) -> bool[src]
fn ne(&self, other: &ProxyAuthorization) -> bool[src]
impl DerefMut for ProxyAuthorization[src]
fn deref_mut(&mut self) -> &mut Credentials[src]
impl Deref for ProxyAuthorization[src]
type Target = Credentials
The resulting type after dereferencing.
fn deref(&self) -> &Credentials[src]
impl Debug for ProxyAuthorization[src]
Auto Trait Implementations
impl Send for ProxyAuthorization
impl Sync for ProxyAuthorization
Blanket Implementations
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
impl<T, U> Into for T where
U: From<T>, [src]
U: From<T>,
impl<T> From for T[src]
impl<T, U> TryFrom for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T> Borrow for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> BorrowMut for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,