Struct stateright::actor::ordered_reliable_link::StateWrapper[][src]

pub struct StateWrapper<Msg, State> { /* fields omitted */ }

Maintains state for the ORL.

Trait Implementations

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

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

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

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

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

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

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

Auto Trait Implementations

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

impl<Msg, State> Send for StateWrapper<Msg, State> where
    Msg: Send,
    State: Send

impl<Msg, State> Sync for StateWrapper<Msg, State> where
    Msg: Sync,
    State: Sync

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

impl<Msg, State> UnwindSafe for StateWrapper<Msg, State> where
    Msg: UnwindSafe,
    State: 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<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>,