[][src]Enum legion_task::Cons

pub enum Cons<T> {
    Fork(Box<Cons<T>>, Box<Cons<T>>),
    Seq(Box<Cons<T>>, Box<Cons<T>>),
    Task(T),
    Nil,
}

Implementation detail of TaskGraph. Note that two trees may be unequal yet equivalent in how they assemble, for example, Cons::Seq(x, Cons::Seq(y, z)) != Cons::Seq(Cons::Seq(x, y), z), but they both assemble into a sequence x -> y -> z.

Variants

Fork(Box<Cons<T>>, Box<Cons<T>>)
Seq(Box<Cons<T>>, Box<Cons<T>>)
Task(T)
Nil

Implementations

impl Cons<Box<dyn TaskFactory + Send + Sync>>[src]

pub fn assemble(
    self,
    on_completion: OnCompletion,
    cmd: &mut CommandBuffer
) -> Entity
[src]

Mark the root of the TaskGraph as final, effectively unblocking the first tasks in this graph to be run. Panics if self contains no tasks.

Trait Implementations

impl<T: Clone> Clone for Cons<T>[src]

impl<T: Debug> Debug for Cons<T>[src]

impl<T: Eq> Eq for Cons<T>[src]

impl<T: PartialEq> PartialEq<Cons<T>> for Cons<T>[src]

impl<T> StructuralEq for Cons<T>[src]

impl<T> StructuralPartialEq for Cons<T>[src]

Auto Trait Implementations

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

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

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

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

impl<T> UnwindSafe for Cons<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> Component for T where
    T: 'static + Send + Sync

impl<T> Downcast for T where
    T: Any

impl<T> DowncastSync for T where
    T: Send + Sync + Any

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

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

impl<T> Resource for T where
    T: 'static + Send + Sync

impl<T> Tag for T where
    T: 'static + Clone + PartialEq<T> + Send + Sync

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.