[][src]Enum sealrs::actors::fsm::FsmAction

pub enum FsmAction<A, S, D> {
    Goto(S),
    GotoUsing(S, D),
    Stay,
    StayUsing(D),
    Stop,
    Unhandled,
    Indirector(A),
}

Variants

Goto(S)GotoUsing(S, D)StayStayUsing(D)StopUnhandledIndirector(A)

Auto Trait Implementations

impl<A, S, D> Sync for FsmAction<A, S, D> where
    A: Sync,
    D: Sync,
    S: Sync

impl<A, S, D> Send for FsmAction<A, S, D> where
    A: Send,
    D: Send,
    S: Send

impl<A, S, D> Unpin for FsmAction<A, S, D> where
    A: Unpin,
    D: Unpin,
    S: Unpin

impl<A, S, D> RefUnwindSafe for FsmAction<A, S, D> where
    A: RefUnwindSafe,
    D: RefUnwindSafe,
    S: RefUnwindSafe

impl<A, S, D> UnwindSafe for FsmAction<A, S, D> where
    A: UnwindSafe,
    D: UnwindSafe,
    S: UnwindSafe

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]