pub struct ProxyAuthorization<C>(pub C)
where
C: Credentials;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: CTrait Implementations§
Source§impl<C> Clone for ProxyAuthorization<C>where
C: Clone + Credentials,
impl<C> Clone for ProxyAuthorization<C>where
C: Clone + Credentials,
Source§fn clone(&self) -> ProxyAuthorization<C>
fn clone(&self) -> ProxyAuthorization<C>
Returns a duplicate 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 for ProxyAuthorization<C>where
C: Debug + Credentials,
impl<C> Debug for ProxyAuthorization<C>where
C: Debug + Credentials,
Source§impl<C> Header for ProxyAuthorization<C>where
C: Credentials,
impl<C> Header for ProxyAuthorization<C>where
C: Credentials,
Source§fn name() -> &'static HeaderName
fn name() -> &'static HeaderName
The name of this header.
Source§fn decode<'i, I>(values: &mut I) -> Result<ProxyAuthorization<C>, Error>where
I: Iterator<Item = &'i HeaderValue>,
fn decode<'i, I>(values: &mut I) -> Result<ProxyAuthorization<C>, Error>where
I: Iterator<Item = &'i HeaderValue>,
Decode this type from an iterator of
HeaderValues.Source§impl<C> PartialEq for ProxyAuthorization<C>where
C: PartialEq + Credentials,
impl<C> PartialEq for ProxyAuthorization<C>where
C: PartialEq + Credentials,
impl<C> StructuralPartialEq for ProxyAuthorization<C>where
C: Credentials,
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<Data> ApiSuccessResponse for Data
impl<Data> ApiSuccessResponse for Data
fn api_response<Meta>(self, meta: Option<Meta>) -> ApiResponse<Self, Meta>
fn api_response_without_meta<Meta>(self) -> ApiResponse<Self, Meta>
fn api_response_with_meta<Meta>(self, meta: Meta) -> ApiResponse<Self, Meta>
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§impl<T> FutureExt for T
impl<T> FutureExt for T
Source§fn with_context(self, otel_cx: Context) -> WithContext<Self> ⓘ
fn with_context(self, otel_cx: Context) -> WithContext<Self> ⓘ
Source§fn with_current_context(self) -> WithContext<Self> ⓘ
fn with_current_context(self) -> WithContext<Self> ⓘ
Source§impl<T> FutureTraceExt for Twhere
T: FutureExt,
impl<T> FutureTraceExt for Twhere
T: FutureExt,
Source§fn with_current_context_span(self, otel_span: Span) -> WithContext<Self> ⓘ
fn with_current_context_span(self, otel_span: Span) -> WithContext<Self> ⓘ
Pass the span of opentelemetry to the current context of tracing.
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request