Set

Type Alias Set 

Source
pub type Set<V> = BTreeSet<V>;
Expand description

An alias for a simple set.

By default, this is an alias for the alloc::collections::BTreeSet. However, when the hashmaps feature is enabled, this becomes an alias for hashbrown’s HashSet.

Aliased Type§

pub struct Set<V> { /* private fields */ }