Struct hyper::client::connect::CaptureConnection
source · pub struct CaptureConnection { /* private fields */ }
Expand description
CaptureConnection
allows callers to capture Connected
information
To capture a connection for a request, use capture_connection
.
Implementations§
source§impl CaptureConnection
impl CaptureConnection
sourcepub fn connection_metadata(&self) -> impl Deref<Target = Option<Connected>> + '_
pub fn connection_metadata(&self) -> impl Deref<Target = Option<Connected>> + '_
Retrieve the connection metadata, if available
sourcepub async fn wait_for_connection_metadata(
&mut self
) -> impl Deref<Target = Option<Connected>> + '_
pub async fn wait_for_connection_metadata( &mut self ) -> impl Deref<Target = Option<Connected>> + '_
Wait for the connection to be established
If a connection was established, this will always return Some(...)
. If the request never
successfully connected (e.g. DNS resolution failure), this method will never return.
Trait Implementations§
source§impl Clone for CaptureConnection
impl Clone for CaptureConnection
source§fn clone(&self) -> CaptureConnection
fn clone(&self) -> CaptureConnection
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 more