pub struct ColumnatedMergeBatcher<K, V, T, D>where
K: Columnation + 'static,
V: Columnation + 'static,
T: Columnation + 'static,
D: Columnation + 'static,{ /* private fields */ }
Expand description
Creates batches from unordered tuples.
Trait Implementations§
Source§impl<K, V, T, D> Batcher for ColumnatedMergeBatcher<K, V, T, D>where
K: Columnation + Ord + Clone + 'static,
V: Columnation + Ord + Clone + 'static,
T: Columnation + Timestamp + 'static,
D: Columnation + Semigroup + 'static,
impl<K, V, T, D> Batcher for ColumnatedMergeBatcher<K, V, T, D>where
K: Columnation + Ord + Clone + 'static,
V: Columnation + Ord + Clone + 'static,
T: Columnation + Timestamp + 'static,
D: Columnation + Semigroup + 'static,
Source§fn frontier(&mut self) -> AntichainRef<'_, T>
fn frontier(&mut self) -> AntichainRef<'_, T>
The frontier of elements remaining after the most recent call to self.seal
.
Source§fn new(
logger: Option<Logger<DifferentialEvent, WorkerIdentifier>>,
operator_id: usize,
) -> Self
fn new( logger: Option<Logger<DifferentialEvent, WorkerIdentifier>>, operator_id: usize, ) -> Self
Allocates a new empty batcher.
Auto Trait Implementations§
impl<K, V, T, D> Freeze for ColumnatedMergeBatcher<K, V, T, D>
impl<K, V, T, D> !RefUnwindSafe for ColumnatedMergeBatcher<K, V, T, D>
impl<K, V, T, D> !Send for ColumnatedMergeBatcher<K, V, T, D>
impl<K, V, T, D> !Sync for ColumnatedMergeBatcher<K, V, T, D>
impl<K, V, T, D> Unpin for ColumnatedMergeBatcher<K, V, T, D>where
T: Unpin,
D: Unpin,
<T as Columnation>::InnerRegion: Unpin,
<D as Columnation>::InnerRegion: Unpin,
K: Unpin,
V: Unpin,
<K as Columnation>::InnerRegion: Unpin,
<V as Columnation>::InnerRegion: Unpin,
impl<K, V, T, D> !UnwindSafe for ColumnatedMergeBatcher<K, V, T, D>
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