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

pub struct TaskCell {
    pub task: Task,
    pub extras: Extras,
}

The task cell for callback tasks.

Fields

task: Task

The callback task.

extras: Extras

Extra information about the task.

Trait Implementations

impl TaskCell for TaskCell[src]

impl<F> WithExtras<TaskCell> for F where
    F: FnOnce(&mut Handle<'_>) + 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]