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>
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