Struct differential_dataflow::trace::wrappers::frontier::TraceFrontier[][src]

pub struct TraceFrontier<Tr> where
    Tr: TraceReader
{ /* fields omitted */ }

Wrapper to provide trace to nested scope.

Implementations

impl<Tr> TraceFrontier<Tr> where
    Tr: TraceReader,
    Tr::Time: Timestamp
[src]

pub fn make_from(trace: Tr, frontier: AntichainRef<'_, Tr::Time>) -> Self[src]

Makes a new trace wrapper

Trait Implementations

impl<Tr> Clone for TraceFrontier<Tr> where
    Tr: TraceReader + Clone,
    Tr::Time: Clone
[src]

impl<Tr> TraceReader for TraceFrontier<Tr> where
    Tr: TraceReader,
    Tr::Batch: Clone,
    Tr::Key: 'static,
    Tr::Val: 'static,
    Tr::Time: Timestamp + Lattice,
    Tr::R: 'static, 
[src]

type Key = Tr::Key

Key by which updates are indexed.

type Val = Tr::Val

Values associated with keys.

type Time = Tr::Time

Timestamps associated with updates

type R = Tr::R

Associated update.

type Batch = BatchFrontier<Tr::Key, Tr::Val, Tr::Time, Tr::R, Tr::Batch>

The type of an immutable collection of updates.

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

The type used to enumerate the collections contents.

Auto Trait Implementations

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

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

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

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

impl<Tr> UnwindSafe for TraceFrontier<Tr> where
    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.