pub trait Collection<A>: Default + Extend<A> {
    // Provided method
    fn push(&mut self, item: A) { ... }
}

Provided Methods§

source

fn push(&mut self, item: A)

Implementors§

source§

impl<A, T: Default + Extend<A>> Collection<A> for T