pub trait HashSetLike<E>where E: Eq + Hash,{ // Required method fn insert(&mut self, e: E) -> Option<E>; }
Trait HashSetLike adopter for HashSet-like containers.
Inserts a key-value pair into the map.