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

pub struct TraceEnter<Tr, TInner, F> where
    Tr: TraceReader
{ /* fields omitted */ }

Wrapper to provide trace to nested scope.

Methods

impl<Tr, TInner, F> TraceEnter<Tr, TInner, F> where
    Tr: TraceReader,
    Tr::Time: Timestamp,
    TInner: Refines<Tr::Time> + Lattice
[src]

pub fn make_from(trace: Tr, logic: Rc<F>) -> Self[src]

Makes a new trace wrapper

Trait Implementations

impl<Tr, TInner, F> TraceReader for TraceEnter<Tr, TInner, F> where
    Tr: TraceReader,
    Tr::Batch: Clone,
    Tr::Key: 'static,
    Tr::Val: 'static,
    Tr::Time: Timestamp,
    TInner: Refines<Tr::Time> + Lattice,
    Tr::R: 'static,
    F: 'static,
    F: Fn(&Tr::Key, &Tr::Val, &Tr::Time) -> TInner, 
[src]

type Key = Tr::Key

Key by which updates are indexed.

type Val = Tr::Val

Values associated with keys.

type Time = TInner

Timestamps associated with updates

type R = Tr::R

Associated update.

type Batch = BatchEnter<Tr::Key, Tr::Val, Tr::Time, Tr::R, Tr::Batch, TInner, F>

The type of an immutable collection of updates.

type Cursor = CursorEnter<Tr::Key, Tr::Val, Tr::Time, Tr::R, Tr::Cursor, TInner, F>

The type used to enumerate the collections contents.

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

Provides a cursor over updates contained in the trace.

fn read_upper(&mut self, target: &mut Antichain<Self::Time>) where
    Self::Time: Timestamp
[src]

Reads the upper frontier of committed times. Read more

impl<Tr, TInner, F> Clone for TraceEnter<Tr, TInner, F> where
    Tr: TraceReader + Clone
[src]

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

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl<Tr, TInner, F> !Send for TraceEnter<Tr, TInner, F>

impl<Tr, TInner, F> Unpin for TraceEnter<Tr, TInner, F> where
    TInner: Unpin,
    Tr: Unpin,
    <Tr as TraceReader>::Time: Unpin

impl<Tr, TInner, F> !Sync for TraceEnter<Tr, TInner, F>

impl<Tr, TInner, F> UnwindSafe for TraceEnter<Tr, TInner, F> where
    F: RefUnwindSafe,
    TInner: UnwindSafe,
    Tr: UnwindSafe,
    <Tr as TraceReader>::Time: UnwindSafe

impl<Tr, TInner, F> !RefUnwindSafe for TraceEnter<Tr, TInner, F>

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

impl<T> Borrow<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 + Clone
[src]