pub trait ReadableHashSetExt<V, H>: Readable<Target = HashSet<V, H>>where
V: 'static,
H: 'static,{
// Provided methods
fn is_empty(&self) -> bool { ... }
fn len(&self) -> usize { ... }
fn capacity(&self) -> usize { ... }
fn contains(&self, value: &V) -> bool
where V: Hash + Eq,
H: BuildHasher { ... }
}Available on crate feature
prelude only.Expand description
An extension trait for Readable<HashSet<V, H>> that provides some convenience methods.