logo
pub trait HashSetLike<E> where
    E: Eq + Hash
{ fn insert(&mut self, e: E) -> Option<E>; }
Expand description

Trait HashSetLike adopter for HashSet-like containers.

Required Methods

Inserts a key-value pair into the map.

Implementors