pub fn diagnose<T>(
    name: impl Into<Cow<'static, str>>,
    inner: T
) -> DiagnoseFuture<T>Notable traits for DiagnoseFuture<T>impl<T> Future for DiagnoseFuture<T> where
    T: Future
type Output = T::Output;
Expand description

Wraps around a Future and adds diagnostics.