data_structure_traits 0.1.12

data structure collection traits
Documentation
use super::Get;

pub trait GetMut<K>: Get<K>
where
    K: ?Sized,
{
    fn get_mut(&mut self, K) -> Option<&mut Self::Output>;
}