Struct bevy_ecs::schedule::Schedule[][src]

pub struct Schedule { /* fields omitted */ }

Implementations

impl Schedule[src]

pub fn with_stage<S: Stage>(self, label: impl StageLabel, stage: S) -> Self[src]

pub fn with_stage_after<S: Stage>(
    self,
    target: impl StageLabel,
    label: impl StageLabel,
    stage: S
) -> Self
[src]

pub fn with_stage_before<S: Stage>(
    self,
    target: impl StageLabel,
    label: impl StageLabel,
    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(
    self,
    stage_label: impl StageLabel,
    system: impl Into<SystemDescriptor>
) -> 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,
    label: impl StageLabel,
    stage: S
) -> &mut Self
[src]

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

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

pub fn add_system_to_stage(
    &mut self,
    stage_label: impl StageLabel,
    system: impl Into<SystemDescriptor>
) -> &mut Self
[src]

pub fn add_system_set_to_stage(
    &mut self,
    stage_label: impl StageLabel,
    system_set: SystemSet
) -> &mut Self
[src]

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

pub fn get_stage<T: Stage>(&self, label: &dyn StageLabel) -> Option<&T>[src]

pub fn get_stage_mut<T: Stage>(
    &mut self,
    label: &dyn StageLabel
) -> Option<&mut T>
[src]

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

pub fn iter_stages(&self) -> impl Iterator<Item = (&dyn StageLabel, &dyn Stage)>[src]

Iterates over all of schedule’s stages and their labels, in execution order.

Trait Implementations

impl Default for Schedule[src]

impl Stage 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> Component for T where
    T: 'static + Send + Sync
[src]

impl<T> Downcast for T where
    T: Any
[src]

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

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

impl<T> FromWorld for T where
    T: Default
[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>,