Enum differential_dataflow::operators::arrange::TraceReplayInstruction[][src]

pub enum TraceReplayInstruction<Tr> where
    Tr: TraceReader
{ Frontier(Antichain<Tr::Time>), Batch(Tr::BatchOption<Tr::Time>), }

Operating instructions on how to replay a trace.

Variants

Frontier(Antichain<Tr::Time>)

Describes a frontier advance.

Batch(Tr::BatchOption<Tr::Time>)

Describes a batch of data and a capability hint.

Auto Trait Implementations

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

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

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

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

impl<Tr> UnwindSafe for TraceReplayInstruction<Tr> where
    <Tr as TraceReader>::Batch: 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> 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.