Trait timely::container::PushInto

source ·
pub trait PushInto<T> {
    // Required method
    fn push_into(&mut self, item: T);
}
Expand description

A container that can absorb items of a specific type.

Required Methods§

source

fn push_into(&mut self, item: T)

Push item into self.

Implementations on Foreign Types§

source§

impl<T> PushInto<&&T> for Vec<T>
where T: Clone,

source§

fn push_into(&mut self, item: &&T)

source§

impl<T> PushInto<&T> for Vec<T>
where T: Clone,

source§

fn push_into(&mut self, item: &T)

source§

impl<T> PushInto<T> for Vec<T>

source§

fn push_into(&mut self, item: T)

Implementors§

source§

impl<'a, T, CB, P, D> PushInto<D> for AutoflushSession<'a, T, CB, P>
where T: Timestamp + 'a, CB: ContainerBuilder + PushInto<D> + 'a, P: Push<Bundle<T, CB::Container>> + 'a,

source§

impl<'a, T, CB, P, D> PushInto<D> for Session<'a, T, CB, P>
where T: Eq + Clone + 'a, CB: ContainerBuilder + PushInto<D> + 'a, P: Push<Bundle<T, CB::Container>> + 'a,

source§

impl<R, T> PushInto<T> for FlatStack<R>
where R: Region + Push<T>,

source§

impl<T> PushInto<&&T> for TimelyStack<T>
where T: Columnation,

source§

impl<T> PushInto<&T> for TimelyStack<T>
where T: Columnation,

source§

impl<T> PushInto<T> for TimelyStack<T>
where T: Columnation,

source§

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

source§

impl<T, CB, D> PushInto<D> for Handle<T, CB>
where T: Timestamp, CB: ContainerBuilder + PushInto<D>,

source§

impl<T, CB, P, D> PushInto<D> for Buffer<T, CB, P>
where T: Eq + Clone, CB: ContainerBuilder + PushInto<D>, P: Push<Bundle<T, CB::Container>>,