[]Struct zipkin::Bind

pub struct Bind<T> { /* fields omitted */ }

A type which wraps a future, associating it with an OpenSpan.

The span's context will be set as the current whenever it's polled, and the span will close when the future is dropped.

Trait Implementations

impl<'__pin, T> Unpin for Bind<T> where
    __Origin<'__pin, T>: Unpin

impl<T> Future for Bind<T> where
    T: Future
[src]

type Output = T::Output

The type of value produced on completion.

Auto Trait Implementations

impl<T> Send for Bind<T> where
    T: Send

impl<T> Sync for Bind<T> where
    T: Sync

impl<T> UnwindSafe for Bind<T> where
    T: UnwindSafe

impl<T> RefUnwindSafe for Bind<T> where
    T: RefUnwindSafe

Blanket Implementations

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

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

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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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

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