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
sourceimpl 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
sourceimpl Clone for CaptureConnection
impl Clone for CaptureConnection
sourcefn clone(&self) -> CaptureConnection
fn clone(&self) -> CaptureConnection
Returns a copy of the value. Read more
1.0.0const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for CaptureConnection
impl Debug for CaptureConnection
Auto Trait Implementations
impl !RefUnwindSafe for CaptureConnection
impl Send for CaptureConnection
impl Sync for CaptureConnection
impl Unpin for CaptureConnection
impl !UnwindSafe for CaptureConnection
Blanket Implementations
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstablefn borrow_mut(&mut self) -> &mut T
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>
impl<T> ToOwned for Twhere
T: Clone,
impl<T> ToOwned for Twhere
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
fn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
Uses borrowed data to replace owned data, usually by cloning. Read more