Struct legion::Schedule[][src]

pub struct Schedule { /* fields omitted */ }

A schedule of systems for execution.

Examples

let mut world = World::default();
let mut resources = Resources::default();
let mut schedule = Schedule::builder()
    .add_system(find_collisions)
    .flush()
    .add_system(calculate_acceleration)
    .add_system(update_positions)
    .build();

schedule.execute(&mut world, &mut resources);

Implementations

impl Schedule[src]

pub fn builder() -> Builder[src]

Creates a new schedule builder.

pub fn execute(&mut self, world: &mut World, resources: &mut Resources)[src]

Executes all of the steps in the schedule.

pub fn execute_in_thread_pool(
    &mut self,
    world: &mut World,
    resources: &mut Resources,
    pool: &ThreadPool
)
[src]

Executes all of the steps in the schedule, with parallelized systems running in the given thread pool.

pub fn into_vec(self) -> Vec<Step>[src]

Converts the schedule into a vector of steps.

Trait Implementations

impl Debug for Schedule[src]

impl From<Builder> for Schedule[src]

impl From<Vec<Step, Global>> for Schedule[src]

Auto Trait Implementations

impl !RefUnwindSafe for Schedule

impl !Send for Schedule

impl !Sync for Schedule

impl Unpin for Schedule

impl !UnwindSafe for Schedule

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> Downcast for T where
    T: Any
[src]

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

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

impl<T> Pointable for T

type Init = T

The type for initializers.

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.