Struct differential_dataflow::trace::implementations::spine::Spine [] [src]

pub struct Spine<K, V, T: Lattice + Ord, R: Diff, B: Batch<K, V, T, R>> { /* fields omitted */ }

An append-only collection of update tuples.

A spine maintains a small number of immutable collections of update tuples, merging the collections when two have similar sizes. In this way, it allows the addition of more tuples, which may then be merged with other immutable collections.

Trait Implementations

impl<K: Debug, V: Debug, T: Debug + Lattice + Ord, R: Debug + Diff, B: Debug + Batch<K, V, T, R>> Debug for Spine<K, V, T, R, B>
[src]

[src]

Formats the value using the given formatter. Read more

impl<K, V, T, R, B> TraceReader<K, V, T, R> for Spine<K, V, T, R, B> where
    K: Ord + Clone,
    V: Ord + Clone,
    T: Lattice + Ord + Clone,
    R: Diff,
    B: Batch<K, V, T, R> + Clone + 'static, 
[src]

The type of an immutable collection of updates.

The type used to enumerate the collections contents.

[src]

Acquires a cursor to the restriction of the collection's contents to updates at times not greater or equal to an element of upper. Read more

[src]

Advances the frontier of times the collection must be correctly accumulable through. Read more

[src]

Reports the frontier from which all time comparisions should be accurate. Read more

[src]

Advances the frontier that may be used in cursor_through. Read more

[src]

Reports the frontier from which the collection may be subsetted. Read more

[src]

Maps some logic across the batches the collection manages. Read more

[src]

Provides a cursor over updates contained in the trace.

impl<K, V, T, R, B> Trace<K, V, T, R> for Spine<K, V, T, R, B> where
    K: Ord + Clone,
    V: Ord + Clone,
    T: Lattice + Ord + Clone,
    R: Diff,
    B: Batch<K, V, T, R> + Clone + 'static, 
[src]

[src]

Allocates a new empty trace.

[src]

Introduces a batch of updates to the trace. Read more

Auto Trait Implementations

impl<K, V, T, R, B> Send for Spine<K, V, T, R, B> where
    B: Send,
    K: Send,
    T: Send,
    V: Send

impl<K, V, T, R, B> Sync for Spine<K, V, T, R, B> where
    B: Sync,
    K: Sync,
    R: Sync,
    T: Sync,
    V: Sync