Trait InstrumentAwait

pub trait InstrumentAwait: Sized + Future {
    // Provided method
    fn instrument_await(self, span: impl Into<Span>) -> Instrumented<Self> { ... }
}
Expand description

Attach spans to a future to be traced in the await-tree.

Provided Methods§

fn instrument_await(self, span: impl Into<Span>) -> Instrumented<Self>

Instrument the future with a span.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

§

impl<F> InstrumentAwait for F
where F: Future,