Trait cc_traits::Collection[][src]

pub trait Collection {
    type Item;
}

Abstract collection.

Associated Types

type Item[src]

Type of the items of the collection.

Loading content...

Implementations on Foreign Types

impl<T> Collection for Vec<T>[src]

type Item = T

impl<T> Collection for VecDeque<T>[src]

type Item = T

impl<K, V> Collection for BTreeMap<K, V>[src]

type Item = V

impl<T> Collection for BTreeSet<T>[src]

type Item = T

impl<K, V> Collection for HashMap<K, V>[src]

type Item = V

impl<T> Collection for HashSet<T>[src]

type Item = T

Loading content...

Implementors

Loading content...