pub struct ConsolidatingContainerBuilder<C> { /* private fields */ }
Expand description

A container builder that consolidates data in-places into fixed-sized containers. Does not maintain FIFO ordering.

Trait Implementations§

source§

impl<D, T, R> ContainerBuilder for ConsolidatingContainerBuilder<Vec<(D, T, R)>>
where D: Data, T: Data, R: Semigroup + 'static,

§

type Container = Vec<(D, T, R)>

The container type we’re building.
source§

fn extract(&mut self) -> Option<&mut Vec<(D, T, R)>>

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 Vec<(D, T, R)>>

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

impl<C: Default> Default for ConsolidatingContainerBuilder<C>

source§

fn default() -> ConsolidatingContainerBuilder<C>

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

impl<D, T, R, P> PushInto<P> for ConsolidatingContainerBuilder<Vec<(D, T, R)>>
where D: Data, T: Data, R: Semigroup + 'static, Vec<(D, T, R)>: PushInto<P>,

source§

fn push_into(&mut self, item: P)

Push an element.

Precondition: current is not allocated or has space for at least one element.

Auto Trait Implementations§

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.