pub struct ColumnationChunker<T: Columnation> { /* private fields */ }
Expand description
Chunk a stream of vectors into chains of vectors.
Trait Implementations§
source§impl<K, V, T, R> ContainerBuilder for ColumnationChunker<((K, V), T, R)>where
K: Columnation + Ord + Clone + 'static,
V: Columnation + Ord + Clone + 'static,
T: Columnation + Ord + Clone + 'static,
R: Columnation + Semigroup + Clone + 'static,
impl<K, V, T, R> ContainerBuilder for ColumnationChunker<((K, V), T, R)>where
K: Columnation + Ord + Clone + 'static,
V: Columnation + Ord + Clone + 'static,
T: Columnation + Ord + Clone + 'static,
R: Columnation + Semigroup + Clone + 'static,
source§impl<T: Columnation> Default for ColumnationChunker<T>
impl<T: Columnation> Default for ColumnationChunker<T>
source§impl<'a, K, V, T, R> PushInto<&'a mut Vec<((K, V), T, R)>> for ColumnationChunker<((K, V), T, R)>where
K: Columnation + Ord + Clone,
V: Columnation + Ord + Clone,
T: Columnation + Ord + Clone,
R: Columnation + Semigroup + Clone,
impl<'a, K, V, T, R> PushInto<&'a mut Vec<((K, V), T, R)>> for ColumnationChunker<((K, V), T, R)>where
K: Columnation + Ord + Clone,
V: Columnation + Ord + Clone,
T: Columnation + Ord + Clone,
R: Columnation + Semigroup + Clone,
Auto Trait Implementations§
impl<T> Freeze for ColumnationChunker<T>
impl<T> RefUnwindSafe for ColumnationChunker<T>
impl<T> Send for ColumnationChunker<T>
impl<T> Sync for ColumnationChunker<T>
impl<T> Unpin for ColumnationChunker<T>
impl<T> UnwindSafe for ColumnationChunker<T>
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
.