Struct timely::container::CapacityContainerBuilder

source ·
pub struct CapacityContainerBuilder<C> { /* private fields */ }
Expand description

A default container builder that uses length and preferred capacity to chunk data.

Maintains a single empty allocation between Self::push_into and Self::extract, but not across Self::finish to maintain a low memory footprint.

Maintains FIFO order.

Implementations§

source§

impl<C> CapacityContainerBuilder<C>
where C: Container,

source

pub fn push_container(&mut self, container: &mut C)

Push a pre-formed container at this builder. This exists to maintain API compatibility.

Trait Implementations§

source§

impl<C> ContainerBuilder for CapacityContainerBuilder<C>
where C: Container,

§

type Container = C

The container type we’re building.
source§

fn extract(&mut self) -> Option<&mut C>

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 C>

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

impl<C> Debug for CapacityContainerBuilder<C>
where C: Debug,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl<C> Default for CapacityContainerBuilder<C>
where C: Default,

source§

fn default() -> CapacityContainerBuilder<C>

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

impl<T, C> PushInto<T> for CapacityContainerBuilder<C>
where C: SizableContainer + PushInto<T>,

source§

fn push_into(&mut self, item: T)

Push item into self.

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<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.