Trait HashSetExt
trait HashSetExt
A convenience trait that can be used together with the type aliases defined to
get access to the new() and with_capacity() methods for the HashSet type aliases.
Required Methods
fn new() -> SelfConstructs a new HashSet
fn with_capacity(capacity: usize) -> SelfConstructs a new HashSet with a given initial capacity
Implementors
impl<K, S> HashSetExt for std::collections::HashSet<K, S>