pub struct Connected { /* private fields */ }
Expand description
Extra information about the connected transport.
This can be used to inform recipients about things like if ALPN was used, or if connected to an HTTP proxy.
Implementations
sourceimpl Connected
impl Connected
sourcepub fn proxy(self, is_proxied: bool) -> Connected
pub fn proxy(self, is_proxied: bool) -> Connected
Set whether the connected transport is to an HTTP proxy.
This setting will affect if HTTP/1 requests written on the transport will have the request-target in absolute-form or origin-form:
- When
proxy(false)
:
GET /guide HTTP/1.1
- When
proxy(true)
:
GET http://hyper.rs/guide HTTP/1.1
Default is false
.
sourcepub fn is_proxied(&self) -> bool
pub fn is_proxied(&self) -> bool
Determines if the connected transport is to an HTTP proxy.
sourcepub fn extra<T: Clone + Send + Sync + 'static>(self, extra: T) -> Connected
pub fn extra<T: Clone + Send + Sync + 'static>(self, extra: T) -> Connected
Set extra connection information to be set in the extensions of every Response
.
sourcepub fn get_extras(&self, extensions: &mut Extensions)
pub fn get_extras(&self, extensions: &mut Extensions)
Copies the extra connection information into an Extensions
map.
sourcepub fn negotiated_h2(self) -> Connected
pub fn negotiated_h2(self) -> Connected
Set that the connected transport negotiated HTTP/2 as its next protocol.
sourcepub fn is_negotiated_h2(&self) -> bool
pub fn is_negotiated_h2(&self) -> bool
Determines if the connected transport negotiated HTTP/2 as its next protocol.
Trait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for Connected
impl Send for Connected
impl Sync for Connected
impl Unpin for Connected
impl !UnwindSafe for Connected
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more