Struct amethyst::shred::Seq[]

pub struct Seq<H, T> { /* fields omitted */ }

Runs two tasks sequentially. These two tasks are called head and tail in the following documentation.

Methods

impl<H> Seq<H, Nil>

Creates a new Seq struct, with the tail being a no-op.

Adds sys as the second job and returns a new Seq struct with the previous struct as head and a no-op tail.

Trait Implementations

impl<'a, H, T> RunWithPool<'a> for Seq<H, T> where
    H: RunWithPool<'a>,
    T: RunWithPool<'a>, 

Sets up Resources for a later call to run.

Runs the system/group of systems. Possibly in parallel depending on how the structure is set up. Read more

Accumulates the necessary read/shared resources from the systems in this group. Read more

Accumulates the necessary write/exclusive resources from the systems in this group. Read more

Auto Trait Implementations

impl<H, T> Send for Seq<H, T> where
    H: Send,
    T: Send

impl<H, T> Sync for Seq<H, T> where
    H: Sync,
    T: Sync