Trait data_structure_traits::CollectionMut[][src]

pub trait CollectionMut: Collection {
    fn clear(&mut self);
}

Required Methods

Implementations on Foreign Types

impl<V> CollectionMut for BinaryHeap<V> where
    V: Ord
[src]

impl<K, V> CollectionMut for BTreeMap<K, V> where
    K: Eq + Ord
[src]

impl<V> CollectionMut for BTreeSet<V> where
    V: Eq + Ord
[src]

impl<K, V, S> CollectionMut for HashMap<K, V, S> where
    K: Eq + Hash,
    S: BuildHasher
[src]

impl<V, S> CollectionMut for HashSet<V, S> where
    V: Eq + Hash,
    S: BuildHasher
[src]

impl<T> CollectionMut for LinkedList<T>
[src]

impl CollectionMut for String
[src]

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

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

Implementors