[][src]Struct stateright::explorer::StateView

pub struct StateView<State, Action> { /* fields omitted */ }

Trait Implementations

impl<State: Debug, Action: Debug> Debug for StateView<State, Action>[src]

impl<State: Eq, Action: Eq> Eq for StateView<State, Action>[src]

impl<State: PartialEq, Action: PartialEq> PartialEq<StateView<State, Action>> for StateView<State, Action>[src]

impl<Action, State> Serialize for StateView<State, Action> where
    Action: Debug,
    State: Debug + Hash
[src]

impl<State, Action> StructuralEq for StateView<State, Action>[src]

impl<State, Action> StructuralPartialEq for StateView<State, Action>[src]

Auto Trait Implementations

impl<State, Action> RefUnwindSafe for StateView<State, Action> where
    Action: RefUnwindSafe,
    State: RefUnwindSafe

impl<State, Action> Send for StateView<State, Action> where
    Action: Send,
    State: Send

impl<State, Action> Sync for StateView<State, Action> where
    Action: Sync,
    State: Sync

impl<State, Action> Unpin for StateView<State, Action> where
    Action: Unpin,
    State: Unpin

impl<State, Action> UnwindSafe for StateView<State, Action> where
    Action: 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, 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>,