[][src]Struct bevy_ecs::SystemStage

pub struct SystemStage { /* fields omitted */ }

Implementations

impl SystemStage[src]

pub fn new(executor: Box<dyn SystemStageExecutor>) -> Self[src]

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

pub fn serial() -> Self[src]

pub fn parallel() -> Self[src]

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

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

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

pub fn add_system_boxed(
    &mut self,
    system: Box<dyn System<In = (), Out = ()>>
) -> &mut Self
[src]

pub fn get_executor<T: SystemStageExecutor>(&self) -> Option<&T>[src]

pub fn get_executor_mut<T: SystemStageExecutor>(&mut self) -> Option<&mut T>[src]

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

Trait Implementations

impl<S: System<In = (), Out = ()>> From<S> for SystemStage[src]

impl Stage for SystemStage[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>,