[][src]Struct differential_dataflow::trace::wrappers::enter::TraceEnter

pub struct TraceEnter<K, V, T, R, Tr, TInner> { /* fields omitted */ }

Wrapper to provide trace to nested scope.

Methods

impl<K, V, T, R, Tr, TInner> TraceEnter<K, V, T, R, Tr, TInner> where
    Tr: TraceReader<K, V, T, R>,
    T: Timestamp,
    TInner: Refines<T> + Lattice
[src]

pub fn make_from(trace: Tr) -> Self[src]

Makes a new trace wrapper

Trait Implementations

impl<K, V, T, R, Tr, TInner> TraceReader<K, V, TInner, R> for TraceEnter<K, V, T, R, Tr, TInner> where
    Tr: TraceReader<K, V, T, R>,
    Tr::Batch: Clone,
    K: 'static,
    V: 'static,
    T: Timestamp,
    TInner: Refines<T> + Lattice,
    R: 'static, 
[src]

type Batch = BatchEnter<K, V, T, R, Tr::Batch, TInner>

The type of an immutable collection of updates.

type Cursor = CursorEnter<K, V, T, R, Tr::Cursor, TInner>

The type used to enumerate the collections contents.

fn cursor(
    &mut self
) -> (Self::Cursor, <Self::Cursor as Cursor<Key, Val, Time, R>>::Storage)
[src]

Provides a cursor over updates contained in the trace.

impl<K, V, T, R, Tr, TInner> Clone for TraceEnter<K, V, T, R, Tr, TInner> where
    Tr: TraceReader<K, V, T, R> + Clone
[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl<K, V, T, R, Tr, TInner> Send for TraceEnter<K, V, T, R, Tr, TInner> where
    K: Send,
    R: Send,
    T: Send,
    TInner: Send,
    Tr: Send,
    V: Send

impl<K, V, T, R, Tr, TInner> Sync for TraceEnter<K, V, T, R, Tr, TInner> where
    K: Sync,
    R: Sync,
    T: Sync,
    TInner: Sync,
    Tr: Sync,
    V: Sync

Blanket Implementations

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto 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> Data for T where
    T: 'static + Clone
[src]