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>

source§

fn push_into(&mut self, item: T)

source§

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

source§

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

source§

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

source§

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

Implementors§