1
2
3
4
5
6
pub trait RemoveImmut<K>
where
    K: ?Sized,
{
    fn remove(&self, K) -> Self;
}