[][src]Struct stateright::actor::system::ActorSystemSnapshot

pub struct ActorSystemSnapshot<Msg, State> {
    pub actor_states: Vec<Arc<State>>,
    pub network: Network<Msg>,
}

Represents a snapshot in time for the entire actor system.

Fields

actor_states: Vec<Arc<State>>network: Network<Msg>

Trait Implementations

impl<Msg: Clone, State: Clone> Clone for ActorSystemSnapshot<Msg, State>[src]

impl<Msg: Debug, State: Debug> Debug for ActorSystemSnapshot<Msg, State>[src]

impl<Msg: Eq, State: Eq> Eq for ActorSystemSnapshot<Msg, State>[src]

impl<Msg: Hash, State: Hash> Hash for ActorSystemSnapshot<Msg, State>[src]

impl<Msg: Ord, State: Ord> Ord for ActorSystemSnapshot<Msg, State>[src]

impl<Msg: PartialEq, State: PartialEq> PartialEq<ActorSystemSnapshot<Msg, State>> for ActorSystemSnapshot<Msg, State>[src]

impl<Msg: PartialOrd, State: PartialOrd> PartialOrd<ActorSystemSnapshot<Msg, State>> for ActorSystemSnapshot<Msg, State>[src]

impl<Msg, State> StructuralEq for ActorSystemSnapshot<Msg, State>[src]

impl<Msg, State> StructuralPartialEq for ActorSystemSnapshot<Msg, State>[src]

Auto Trait Implementations

impl<Msg, State> RefUnwindSafe for ActorSystemSnapshot<Msg, State> where
    Msg: RefUnwindSafe,
    State: RefUnwindSafe

impl<Msg, State> Send for ActorSystemSnapshot<Msg, State> where
    Msg: Send,
    State: Send + Sync

impl<Msg, State> Sync for ActorSystemSnapshot<Msg, State> where
    Msg: Sync,
    State: Send + Sync

impl<Msg, State> Unpin for ActorSystemSnapshot<Msg, State> where
    Msg: Unpin

impl<Msg, State> UnwindSafe for ActorSystemSnapshot<Msg, State> where
    Msg: RefUnwindSafe + UnwindSafe,
    State: RefUnwindSafe

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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?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>,