pub enum TraceReplayInstruction<Tr>where
Tr: TraceReader,{
Frontier(Antichain<Tr::Time>),
Batch(Tr::Batch, Option<Tr::Time>),
}
Expand description
Operating instructions on how to replay a trace.
Variants§
Frontier(Antichain<Tr::Time>)
Describes a frontier advance.
Batch(Tr::Batch, Option<Tr::Time>)
Describes a batch of data and a capability hint.
Auto Trait Implementations§
impl<Tr> Freeze for TraceReplayInstruction<Tr>
impl<Tr> RefUnwindSafe for TraceReplayInstruction<Tr>
impl<Tr> Send for TraceReplayInstruction<Tr>
impl<Tr> Sync for TraceReplayInstruction<Tr>
impl<Tr> Unpin for TraceReplayInstruction<Tr>
impl<Tr> UnwindSafe for TraceReplayInstruction<Tr>where
<Tr as TraceReader>::Batch: UnwindSafe,
<Tr as TraceReader>::Time: UnwindSafe + RefUnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<'a, S, T> Semigroup<&'a S> for Twhere
T: Semigroup<S>,
impl<'a, S, T> Semigroup<&'a S> for Twhere
T: Semigroup<S>,
source§fn plus_equals(&mut self, rhs: &&'a S)
fn plus_equals(&mut self, rhs: &&'a S)
The method of
std::ops::AddAssign
, for types that do not implement AddAssign
.