1
2
3
4
5
6
7
8
use super::Get;


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