[][src]Struct bevy_ecs::Schedule

pub struct Schedule { /* fields omitted */ }

Implementations

impl Schedule[src]

pub fn with_stage<S: Stage>(self, name: &str, stage: S) -> Self[src]

pub fn with_stage_after<S: Stage>(
    self,
    target: &str,
    name: &str,
    stage: S
) -> Self
[src]

pub fn with_stage_before<S: Stage>(
    self,
    target: &str,
    name: &str,
    stage: S
) -> Self
[src]

pub fn with_run_criteria<S: System<In = (), Out = ShouldRun>>(
    self,
    system: S
) -> Self
[src]

pub fn with_system_in_stage<S: System<In = (), Out = ()>>(
    self,
    stage_name: &'static str,
    system: S
) -> Self
[src]

pub fn set_run_criteria<S: System<In = (), Out = ShouldRun>>(
    &mut self,
    system: S
) -> &mut Self
[src]

pub fn add_stage<S: Stage>(&mut self, name: &str, stage: S) -> &mut Self[src]

pub fn add_stage_after<S: Stage>(
    &mut self,
    target: &str,
    name: &str,
    stage: S
) -> &mut Self
[src]

pub fn add_stage_before<S: Stage>(
    &mut self,
    target: &str,
    name: &str,
    stage: S
) -> &mut Self
[src]

pub fn add_system_to_stage<S: System<In = (), Out = ()>>(
    &mut self,
    stage_name: &'static str,
    system: S
) -> &mut Self
[src]

pub fn stage<T: Stage, F: FnOnce(&mut T) -> &mut T>(
    &mut self,
    name: &str,
    func: F
) -> &mut Self
[src]

pub fn get_stage<T: Stage>(&self, name: &str) -> Option<&T>[src]

pub fn get_stage_mut<T: Stage>(&mut self, name: &str) -> Option<&mut T>[src]

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

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

Trait Implementations

impl Default for Schedule[src]

impl Stage for Schedule[src]

Auto Trait Implementations

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> DowncastSync for T where
    T: Send + Sync + Any
[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>,