[go: up one dir, main page]

pub trait Collection {
    type Item;

    fn new() -> Self;
    fn add(&mut self, item: Self::Item);
}

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors