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

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

Wrapper to provide trace to nested scope.

Implementations

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

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

Makes a new trace wrapper

Trait Implementations

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

impl<Tr, TInner> TraceReader for TraceEnter<Tr, TInner> where
    Tr: TraceReader,
    Tr::Batch: Clone,
    Tr::Key: 'static,
    Tr::Val: 'static,
    Tr::Time: Timestamp,
    Tr::R: 'static,
    TInner: Refines<Tr::Time> + Lattice
[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>

The type of an immutable collection of updates.

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

The type used to enumerate the collections contents.

Auto Trait Implementations

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

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

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

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

impl<Tr, TInner> UnwindSafe for TraceEnter<Tr, TInner> where
    TInner: UnwindSafe,
    Tr: UnwindSafe,
    <Tr as TraceReader>::Time: 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> Data for T where
    T: 'static + Clone
[src]

impl<T> From<T> for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

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.