[][src]Struct batchloader::ValueSet

pub struct ValueSet<Value> { /* fields omitted */ }

A value set is an opaque data structure that contains the result of a batch operation. It is created with KeySet::into_values, and is used by the Batcher to distribute the values to the correct waiting futures.

Trait Implementations

impl<Value: Debug> Debug for ValueSet<Value>[src]

Auto Trait Implementations

impl<Value> RefUnwindSafe for ValueSet<Value> where
    Value: RefUnwindSafe

impl<Value> Send for ValueSet<Value> where
    Value: Send

impl<Value> Sync for ValueSet<Value> where
    Value: Sync

impl<Value> Unpin for ValueSet<Value> where
    Value: Unpin

impl<Value> UnwindSafe for ValueSet<Value> where
    Value: 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, 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.