[][src]Struct bevy_ecs::StateStage

pub struct StateStage<T> { /* fields omitted */ }

Implementations

impl<T> StateStage<T>[src]

pub fn with_enter_stage<S: Stage>(self, state: T, stage: S) -> Self[src]

pub fn with_exit_stage<S: Stage>(self, state: T, stage: S) -> Self[src]

pub fn with_update_stage<S: Stage>(self, state: T, stage: S) -> Self[src]

pub fn set_enter_stage<S: Stage>(&mut self, state: T, stage: S) -> &mut Self[src]

pub fn set_exit_stage<S: Stage>(&mut self, state: T, stage: S) -> &mut Self[src]

pub fn set_update_stage<S: Stage>(&mut self, state: T, stage: S) -> &mut Self[src]

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

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

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

pub fn enter_stage<S: Stage, F: FnOnce(&mut S) -> &mut S>(
    &mut self,
    state: T,
    func: F
) -> &mut Self
[src]

pub fn exit_stage<S: Stage, F: FnOnce(&mut S) -> &mut S>(
    &mut self,
    state: T,
    func: F
) -> &mut Self
[src]

pub fn update_stage<S: Stage, F: FnOnce(&mut S) -> &mut S>(
    &mut self,
    state: T,
    func: F
) -> &mut Self
[src]

Trait Implementations

impl<T> Default for StateStage<T>[src]

impl<T: Resource + Clone> Stage for StateStage<T>[src]

Auto Trait Implementations

impl<T> !RefUnwindSafe for StateStage<T>[src]

impl<T> Send for StateStage<T> where
    <T as DiscriminantKind>::Discriminant: Send
[src]

impl<T> Sync for StateStage<T> where
    <T as DiscriminantKind>::Discriminant: Sync
[src]

impl<T> Unpin for StateStage<T> where
    <T as DiscriminantKind>::Discriminant: Unpin
[src]

impl<T> !UnwindSafe for StateStage<T>[src]

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>,