Enum amethyst::Trans[][src]

pub enum Trans<T, E> {
    None,
    Pop,
    Push(Box<dyn State<T, E>>),
    Switch(Box<dyn State<T, E>>),
    Replace(Box<dyn State<T, E>>),
    NewStack(Vec<Box<dyn State<T, E>>>),
    Sequence(Vec<Trans<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.

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

Remove all states on the stack and insert a different one.

NewStack(Vec<Box<dyn State<T, E>>>)

Remove all states on the stack and insert new stack.

Sequence(Vec<Trans<T, E>>)

Execute a series of Trans's.

Quit

Stop and remove all states and shut down the engine.

Trait Implementations

impl<T, E> Debug for Trans<T, E>[src]

Auto Trait Implementations

impl<T, E> !RefUnwindSafe for Trans<T, E>[src]

impl<T, E> !Send for Trans<T, E>[src]

impl<T, E> !Sync for Trans<T, E>[src]

impl<T, E> Unpin for Trans<T, E>[src]

impl<T, E> !UnwindSafe for Trans<T, E>[src]

Blanket Implementations

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

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

impl<T> Any for T where
    T: Any

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

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

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

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

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> SetParameter for T

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

impl<T> Supports<T> for T

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