pub trait ReadableHashSetExt<V: 'static, H: 'static>: Readable<Target = HashSet<V, H>> {
// 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 { ... }
}Expand description
An extension trait for Readable<HashSet<V, H>> that provides some convenience methods.