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 moreAuto Trait Implementations§
impl Freeze for CaptureConnection
impl !RefUnwindSafe for CaptureConnection
impl Send for CaptureConnection
impl Sync for CaptureConnection
impl Unpin for CaptureConnection
impl !UnwindSafe for CaptureConnection
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
)