[][src]Enum stateright::actor::system::SystemAction

pub enum SystemAction<Msg> {
    Act(IdEvent<Msg>),
    Drop(Envelope<Msg>),
}

Indicates possible steps that an actor system can take as it evolves.

Variants

Act(IdEvent<Msg>)

An event can be delivered to an actor.

Drop(Envelope<Msg>)

A message can be dropped if the network is lossy.

Trait Implementations

impl<Msg: Clone> Clone for SystemAction<Msg>[src]

impl<Msg: Debug> Debug for SystemAction<Msg>[src]

impl<Msg: PartialEq> PartialEq<SystemAction<Msg>> for SystemAction<Msg>[src]

impl<Msg> StructuralPartialEq for SystemAction<Msg>[src]

Auto Trait Implementations

impl<Msg> RefUnwindSafe for SystemAction<Msg> where
    Msg: RefUnwindSafe

impl<Msg> Send for SystemAction<Msg> where
    Msg: Send

impl<Msg> Sync for SystemAction<Msg> where
    Msg: Sync

impl<Msg> Unpin for SystemAction<Msg> where
    Msg: Unpin

impl<Msg> UnwindSafe for SystemAction<Msg> where
    Msg: UnwindSafe

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> From<T> for T[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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