[][src]Struct differential_dataflow::trace::implementations::ord::OrdValBatch

pub struct OrdValBatch<K, V, T, R, O = usize> where
    K: Ord,
    V: Ord,
    T: Lattice,
    O: OrdOffset,
    <O as TryFrom<usize>>::Error: Debug,
    <O as TryInto<usize>>::Error: Debug
{ pub layer: OrderedLayer<K, OrderedLayer<V, OrderedLeaf<T, R>, O>, O>, pub desc: Description<T>, }

An immutable collection of update tuples, from a contiguous interval of logical times.

Fields

layer: OrderedLayer<K, OrderedLayer<V, OrderedLeaf<T, R>, O>, O>

Where all the dataz is.

desc: Description<T>

Description of the update times this layer represents.

Trait Implementations

impl<K, V, T, R, O> BatchReader<K, V, T, R> for OrdValBatch<K, V, T, R, O> where
    K: Ord + Clone + 'static,
    V: Ord + Clone + 'static,
    T: Lattice + Ord + Clone + 'static,
    R: Semigroup,
    O: OrdOffset,
    <O as TryFrom<usize>>::Error: Debug,
    <O as TryInto<usize>>::Error: Debug
[src]

type Cursor = OrdValCursor<V, T, R, O>

The type used to enumerate the batch's contents.

impl<K, V, T, R, O> Batch<K, V, T, R> for OrdValBatch<K, V, T, R, O> where
    K: Ord + Clone + 'static,
    V: Ord + Clone + 'static,
    T: Lattice + Ord + Clone + Debug + 'static,
    R: Semigroup,
    O: OrdOffset,
    <O as TryFrom<usize>>::Error: Debug,
    <O as TryInto<usize>>::Error: Debug
[src]

type Batcher = MergeBatcher<K, V, T, R, Self>

A type used to assemble batches from disordered updates.

type Builder = OrdValBuilder<K, V, T, R, O>

A type used to assemble batches from ordered update sequences.

type Merger = OrdValMerger<K, V, T, R, O>

A type used to progressively merge batches.

impl<K, V, T, R, O> Builder<K, V, T, R, OrdValBatch<K, V, T, R, O>> for OrdValBuilder<K, V, T, R, O> where
    K: Ord + Clone + 'static,
    V: Ord + Clone + 'static,
    T: Lattice + Ord + Clone + Debug + 'static,
    R: Semigroup,
    O: OrdOffset,
    <O as TryFrom<usize>>::Error: Debug,
    <O as TryInto<usize>>::Error: Debug
[src]

impl<K, V, T, R, O> Merger<K, V, T, R, OrdValBatch<K, V, T, R, O>> for OrdValMerger<K, V, T, R, O> where
    K: Ord + Clone + 'static,
    V: Ord + Clone + 'static,
    T: Lattice + Ord + Clone + Debug + 'static,
    R: Semigroup,
    O: OrdOffset,
    <O as TryFrom<usize>>::Error: Debug,
    <O as TryInto<usize>>::Error: Debug
[src]

impl<K: Debug, V: Debug, T: Debug, R: Debug, O: Debug> Debug for OrdValBatch<K, V, T, R, O> where
    K: Ord,
    V: Ord,
    T: Lattice,
    O: OrdOffset,
    <O as TryFrom<usize>>::Error: Debug,
    <O as TryInto<usize>>::Error: Debug
[src]

impl<K, V, T, R, O> Abomonation for OrdValBatch<K, V, T, R, O> where
    K: Ord,
    V: Ord,
    T: Lattice,
    O: OrdOffset,
    <O as TryFrom<usize>>::Error: Debug,
    <O as TryInto<usize>>::Error: Debug,
    OrderedLayer<K, OrderedLayer<V, OrderedLeaf<T, R>, O>, O>: Abomonation,
    K: Abomonation,
    V: Abomonation,
    T: Abomonation,
    R: Abomonation,
    O: Abomonation,
    Description<T>: Abomonation
[src]

Auto Trait Implementations

impl<K, V, T, R, O> Send for OrdValBatch<K, V, T, R, O> where
    K: Send,
    O: Send,
    R: Send,
    T: Send,
    V: Send

impl<K, V, T, R, O> Sync for OrdValBatch<K, V, T, R, O> where
    K: Sync,
    O: Sync,
    R: Sync,
    T: Sync,
    V: Sync

impl<K, V, T, R, O> Unpin for OrdValBatch<K, V, T, R, O> where
    K: Unpin,
    O: Unpin,
    R: Unpin,
    T: Unpin,
    V: Unpin

impl<K, V, T, R, O> UnwindSafe for OrdValBatch<K, V, T, R, O> where
    K: UnwindSafe,
    O: UnwindSafe,
    R: UnwindSafe,
    T: UnwindSafe,
    V: UnwindSafe

impl<K, V, T, R, O> RefUnwindSafe for OrdValBatch<K, V, T, R, O> where
    K: RefUnwindSafe,
    O: RefUnwindSafe,
    R: RefUnwindSafe,
    T: RefUnwindSafe,
    V: RefUnwindSafe

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for 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<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Data for T where
    T: 'static + Send + Sync + Any + Abomonation