[][src]Trait cc_traits::GetMut

pub trait GetMut<T>: Get<T> {
    pub fn get_mut(&mut self, key: T) -> Option<&mut Self::Item>;
}

Mutably queryable collection.

Required methods

pub fn get_mut(&mut self, key: T) -> Option<&mut Self::Item>[src]

Returns a mutable reference to the item stored behind the given key (if any).

Loading content...

Implementors

Loading content...