[][src]Enum moiradb::types::MoiraCommand

pub enum MoiraCommand<K, V, C: ?Sized> where
    C: Debug,
    K: Debug,
    V: Debug
{ Read(K, u64Sender<(Vec<DBValue<V>>, DBValue<V>)>), Outcome(MoiraDb<K, V, C>), }

Variants

Read(K, u64Sender<(Vec<DBValue<V>>, DBValue<V>)>)
Outcome(MoiraDb<K, V, C>)

Trait Implementations

impl<K: Debug, V: Debug, C: Debug + ?Sized> Debug for MoiraCommand<K, V, C> where
    C: Debug,
    K: Debug,
    V: Debug
[src]

Auto Trait Implementations

impl<K, V, C> !RefUnwindSafe for MoiraCommand<K, V, C>[src]

impl<K, V, C: ?Sized> Send for MoiraCommand<K, V, C> where
    C: Send + Sync,
    K: Send + Sync,
    V: Send + Sync
[src]

impl<K, V, C: ?Sized> Sync for MoiraCommand<K, V, C> where
    C: Send + Sync,
    K: Send + Sync,
    V: Send + Sync
[src]

impl<K, V, C: ?Sized> Unpin for MoiraCommand<K, V, C> where
    K: Unpin
[src]

impl<K, V, C> !UnwindSafe for MoiraCommand<K, V, C>[src]

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