pub struct Instrumented<T> { /* private fields */ }
Expand description
A Future
that has been instrumented with a tracing
Span
.
This type is returned by the Instrument
extension trait. See that
trait’s documentation for details.
Implementations§
Source§impl<T> Instrumented<T>
impl<T> Instrumented<T>
Sourcepub fn span_mut(&mut self) -> &mut Span
pub fn span_mut(&mut self) -> &mut Span
Mutably borrows the Span
that this type is instrumented by.
Sourcepub fn inner_pin_ref(self: Pin<&Self>) -> Pin<&T>
pub fn inner_pin_ref(self: Pin<&Self>) -> Pin<&T>
Get a pinned reference to the wrapped type.
Sourcepub fn inner_pin_mut(self: Pin<&mut Self>) -> Pin<&mut T>
pub fn inner_pin_mut(self: Pin<&mut Self>) -> Pin<&mut T>
Get a pinned mutable reference to the wrapped type.
Sourcepub fn into_inner(self) -> T
pub fn into_inner(self) -> T
Consumes the Instrumented
, returning the wrapped type.
Note that this drops the span.
Trait Implementations§
Source§impl<T: Clone> Clone for Instrumented<T>
impl<T: Clone> Clone for Instrumented<T>
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<T: Debug> Debug for Instrumented<T>
impl<T: Debug> Debug for Instrumented<T>
Source§impl<T> Drop for Instrumented<T>
impl<T> Drop for Instrumented<T>
Source§impl<T: Future> Future for Instrumented<T>
impl<T: Future> Future for Instrumented<T>
impl<'__pin, T> Unpin for Instrumented<T>where
PinnedFieldsOf<__Origin<'__pin, T>>: Unpin,
Auto Trait Implementations§
impl<T> Freeze for Instrumented<T>where
T: Freeze,
impl<T> !RefUnwindSafe for Instrumented<T>
impl<T> Send for Instrumented<T>where
T: Send,
impl<T> Sync for Instrumented<T>where
T: Sync,
impl<T> !UnwindSafe for Instrumented<T>
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§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<F> IntoFuture for Fwhere
F: Future,
impl<F> IntoFuture for Fwhere
F: Future,
Source§type IntoFuture = F
type IntoFuture = F
Which kind of future are we turning this into?
Source§fn into_future(self) -> <F as IntoFuture>::IntoFuture
fn into_future(self) -> <F as IntoFuture>::IntoFuture
Creates a future from a value. Read more
Source§impl<T> WithSubscriber for T
impl<T> WithSubscriber for T
Source§fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> ⓘ
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> ⓘ
Available on crate feature
std
only.Source§fn with_current_subscriber(self) -> WithDispatch<Self> ⓘ
fn with_current_subscriber(self) -> WithDispatch<Self> ⓘ
Available on crate feature
std
only.Layout§
Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.