Struct headers::ProxyAuthorization
source · pub struct ProxyAuthorization<C: Credentials>(pub C);
Expand description
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
Tuple Fields§
§0: C
Trait Implementations§
source§impl<C: Clone + Credentials> Clone for ProxyAuthorization<C>
impl<C: Clone + Credentials> Clone for ProxyAuthorization<C>
source§fn clone(&self) -> ProxyAuthorization<C>
fn clone(&self) -> ProxyAuthorization<C>
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<C: Debug + Credentials> Debug for ProxyAuthorization<C>
impl<C: Debug + Credentials> Debug for ProxyAuthorization<C>
source§impl<C: Credentials> Header for ProxyAuthorization<C>
impl<C: Credentials> Header for ProxyAuthorization<C>
source§impl<C: PartialEq + Credentials> PartialEq for ProxyAuthorization<C>
impl<C: PartialEq + Credentials> PartialEq for ProxyAuthorization<C>
impl<C: Credentials> StructuralPartialEq for ProxyAuthorization<C>
Auto Trait Implementations§
impl<C> Freeze for ProxyAuthorization<C>where
C: Freeze,
impl<C> RefUnwindSafe for ProxyAuthorization<C>where
C: RefUnwindSafe,
impl<C> Send for ProxyAuthorization<C>where
C: Send,
impl<C> Sync for ProxyAuthorization<C>where
C: Sync,
impl<C> Unpin for ProxyAuthorization<C>where
C: Unpin,
impl<C> UnwindSafe for ProxyAuthorization<C>where
C: 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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)