pub type UstrFinSet = HashFinSet<Ustr, BuildHasherDefault<IdentityHasher>>;
Expand description
A finite set with elements of type Ustr
.
Aliased Type§
struct UstrFinSet(/* private fields */);
Implementations
Source§impl<T, S> HashFinSet<T, S>
impl<T, S> HashFinSet<T, S>
Trait Implementations
Source§impl<T: Clone, S: Clone> Clone for HashFinSet<T, S>
impl<T: Clone, S: Clone> Clone for HashFinSet<T, S>
Source§fn clone(&self) -> HashFinSet<T, S>
fn clone(&self) -> HashFinSet<T, S>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<T, S> Default for HashFinSet<T, S>where
S: Default,
impl<T, S> Default for HashFinSet<T, S>where
S: Default,
Source§impl<T, S> Extend<T> for HashFinSet<T, S>
impl<T, S> Extend<T> for HashFinSet<T, S>
Source§fn extend<Iter>(&mut self, iter: Iter)where
Iter: IntoIterator<Item = T>,
fn extend<Iter>(&mut self, iter: Iter)where
Iter: IntoIterator<Item = T>,
Extends a collection with the contents of an iterator. Read more
Source§fn extend_one(&mut self, item: A)
fn extend_one(&mut self, item: A)
🔬This is a nightly-only experimental API. (
extend_one
)Extends a collection with exactly one element.
Source§fn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
🔬This is a nightly-only experimental API. (
extend_one
)Reserves capacity in a collection for the given number of additional elements. Read more