pub struct HashFinSet<T, S = RandomState>(/* private fields */);
Expand description
A finite set backed by a hash set.
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
Source§impl<T, S> FinSet for HashFinSet<T, S>
impl<T, S> FinSet for HashFinSet<T, S>
Source§impl<T, S> From<HashFinSet<T, S>> for HashSet<T, S>
impl<T, S> From<HashFinSet<T, S>> for HashSet<T, S>
Source§fn from(value: HashFinSet<T, S>) -> Self
fn from(value: HashFinSet<T, S>) -> Self
Converts to this type from the input type.
Source§impl<T, S> From<HashSet<T, S>> for HashFinSet<T, S>
impl<T, S> From<HashSet<T, S>> for HashFinSet<T, S>
Source§impl<T, S> IntoIterator for HashFinSet<T, S>
impl<T, S> IntoIterator for HashFinSet<T, S>
Source§impl<T, S> PartialEq for HashFinSet<T, S>
impl<T, S> PartialEq for HashFinSet<T, S>
Source§impl<T, S> Set for HashFinSet<T, S>
impl<T, S> Set for HashFinSet<T, S>
impl<T, S> Eq for HashFinSet<T, S>
Auto Trait Implementations§
impl<T, S> Freeze for HashFinSet<T, S>where
S: Freeze,
impl<T, S> RefUnwindSafe for HashFinSet<T, S>where
S: RefUnwindSafe,
T: RefUnwindSafe,
impl<T, S> Send for HashFinSet<T, S>
impl<T, S> Sync for HashFinSet<T, S>
impl<T, S> Unpin for HashFinSet<T, S>
impl<T, S> UnwindSafe for HashFinSet<T, S>where
S: UnwindSafe,
T: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self
from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self
is actually part of its subset T
(and can be converted to it).§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset
but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self
to the equivalent element of its superset.