pub trait FutureExt: Future {
    fn with_diagnostics(
        self,
        name: impl Into<Cow<'static, str>>
    ) -> DiagnoseFuture<Self>Notable traits for DiagnoseFuture<T>impl<T> Future for DiagnoseFuture<T> where
    T: Future
type Output = T::Output;

    where
        Self: Sized
, { ... } }
Expand description

Extension trait on Futures.

Provided methods

Implementors