[][src]Struct opentelemetry::api::trace::futures::Instrumented

pub struct Instrumented<F, S: Span> { /* fields omitted */ }

A future, stream, sink, or executor that has been instrumented with a tracer and span.

Trait Implementations

impl<F: Clone, S: Clone + Span> Clone for Instrumented<F, S>[src]

impl<F: Debug, S: Debug + Span> Debug for Instrumented<F, S>[src]

impl<F: Future, S: Span> Future for Instrumented<F, S>[src]

type Output = F::Output

The type of value produced on completion.

impl<F, S: Span> PinnedDrop for Instrumented<F, S>[src]

impl<'pin, F, S: Span> Unpin for Instrumented<F, S> where
    __Instrumented<'pin, F, S>: Unpin
[src]

Auto Trait Implementations

impl<F, S> RefUnwindSafe for Instrumented<F, S> where
    F: RefUnwindSafe,
    S: RefUnwindSafe

impl<F, S> Send for Instrumented<F, S> where
    F: Send,
    S: Send

impl<F, S> Sync for Instrumented<F, S> where
    F: Sync,
    S: Sync

impl<F, S> UnwindSafe for Instrumented<F, S> where
    F: UnwindSafe,
    S: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<F> Instrument for F[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,