[][src]Enum amethyst::Trans

pub enum Trans<T, E> {
    None,
    Pop,
    Push(Box<dyn State<T, E>>),
    Switch(Box<dyn State<T, E>>),
    Quit,
}

Types of state transitions. T is the type of shared data between states. E is the type of events

Variants

None

Continue as normal.

Pop

Remove the active state and resume the next state on the stack or stop if there are none.

Push(Box<dyn State<T, E>>)

Pause the active state and push a new state onto the stack.

Switch(Box<dyn State<T, E>>)

Remove the current state on the stack and insert a different one.

Quit

Stop and remove all states and shut down the engine.

Auto Trait Implementations

impl<T, E> !Send for Trans<T, E>

impl<T, E> !Sync for Trans<T, E>

Blanket Implementations

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

impl<T> From<T> for 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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Any for T where
    T: Any

impl<T> Erased for T

impl<T> Supports<T> for T

impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
    D: AdaptFrom<S, Swp, Dwp, T>,
    Dwp: WhitePoint,
    Swp: WhitePoint,
    T: Component + Float
[src]

fn adapt_into(self) -> D[src]

Convert the source color to the destination color using the bradford method by default Read more

impl<T> SetParameter for T

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 

Sets value as a parameter of self.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

type Err = <U as TryFrom<T>>::Err