timely::container

Trait 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<Message<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<Message<T, CB::Container>> + 'a,

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