1use super::Get; 2 3pub trait GetMut<K>: Get<K> 4where 5 K: ?Sized, 6{ 7 fn get_mut(&mut self, K) -> Option<&mut Self::Output>; 8}