Struct yatp::task::future::TaskCell[][src]

pub struct TaskCell(_);

A Future task cell.

Implementations

impl TaskCell[src]

pub fn new<F: Future<Output = ()> + Send + 'static>(
    future: F,
    extras: Extras
) -> Self
[src]

Creates a Future task cell that is ready to be polled.

Trait Implementations

impl Debug for TaskCell[src]

impl TaskCell for TaskCell[src]

impl<F> WithExtras<TaskCell> for F where
    F: Future<Output = ()> + Send + 'static, 
[src]

Auto Trait Implementations

impl !RefUnwindSafe for TaskCell

impl Send for TaskCell

impl Sync for TaskCell

impl Unpin for TaskCell

impl !UnwindSafe for TaskCell

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> Instrument for T[src]

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

impl<F> WithExtras<F> for F where
    F: TaskCell
[src]