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>

§

type Container = Output

The container type we’re building.
source§

fn extract(&mut self) -> Option<&mut Self::Container>

Extract assembled containers, potentially leaving unfinished data behind. Can be called repeatedly, for example while the caller can send data. Read more
source§

fn finish(&mut self) -> Option<&mut Self::Container>

Extract assembled containers and any unfinished data. Should be called repeatedly until it returns None.
source§

impl<Output> Default for ContainerChunker<Output>
where Output: Default,

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<'a, Input, Output> PushInto<RefOrMut<'a, 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: RefOrMut<'a, 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> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<'a, S, T> Semigroup<&'a S> for T
where T: Semigroup<S>,

source§

fn plus_equals(&mut self, rhs: &&'a S)

The method of std::ops::AddAssign, for types that do not implement AddAssign.
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.