pub struct ContainerChunker<Output> { /* private fields */ }
Expand description
Chunk a stream of containers into chains of vectors.
Trait Implementations§
source§impl<Output> ContainerBuilder for ContainerChunker<Output>where
Output: SizableContainer + ConsolidateLayout,
impl<Output> ContainerBuilder for ContainerChunker<Output>where
Output: SizableContainer + ConsolidateLayout,
source§impl<Output> Default for ContainerChunker<Output>where
Output: Default,
impl<Output> Default for ContainerChunker<Output>where
Output: Default,
source§impl<'a, Input, Output> PushInto<&'a mut Input> for ContainerChunker<Output>where
Input: Container,
Output: SizableContainer + ConsolidateLayout + PushInto<Input::Item<'a>> + PushInto<Input::ItemRef<'a>>,
impl<'a, Input, Output> PushInto<&'a mut Input> for ContainerChunker<Output>where
Input: Container,
Output: SizableContainer + ConsolidateLayout + PushInto<Input::Item<'a>> + PushInto<Input::ItemRef<'a>>,
source§fn push_into(&mut self, container: &'a mut Input)
fn push_into(&mut self, container: &'a mut Input)
Push item into self.
Auto Trait Implementations§
impl<Output> Freeze for ContainerChunker<Output>where
Output: Freeze,
impl<Output> RefUnwindSafe for ContainerChunker<Output>where
Output: RefUnwindSafe,
impl<Output> Send for ContainerChunker<Output>where
Output: Send,
impl<Output> Sync for ContainerChunker<Output>where
Output: Sync,
impl<Output> Unpin for ContainerChunker<Output>where
Output: Unpin,
impl<Output> UnwindSafe for ContainerChunker<Output>where
Output: UnwindSafe,
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
.