[][src]Struct futures_diagnose::DiagSpawn

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

Wraps around a T and provides lots of diagnostics about tasks spawned through it.

Methods

impl<T> DiagSpawn<T>[src]

pub fn new(inner: T) -> Self[src]

Wraps around inner.

Trait Implementations

impl<T> Spawn for DiagSpawn<T> where
    T: Spawn
[src]

Auto Trait Implementations

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

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

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

impl<T> Unpin for DiagSpawn<T> where
    T: Unpin

impl<T> UnwindSafe for DiagSpawn<T> where
    T: 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<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<Sp> SpawnExt for Sp where
    Sp: Spawn + ?Sized
[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.