Trait eclectic::Insert [] [src]

pub trait Insert: Collection {
    fn append(&mut self, other: &mut Self) where Self: Sized;
}

A collection that supports insertion.

Required Methods

fn append(&mut self, other: &mut Self) where Self: Sized

Moves all items from the given collection into the collection.

Implementors