pub struct HashSubsets<T>where
<T as TryInto<usize>>::Error: Debug,
<T as TryFrom<usize>>::Error: Debug,
T: Clone + TryInto<usize> + TryFrom<usize> + Hash + Eq,{ /* private fields */ }
Expand description
Maintains subsets of a set partition using HashSet
s
Pass this as the Subsets
implementation to the SetPartition
structs.
Implementations§
Trait Implementations§
Source§impl<T> Clone for HashSubsets<T>
impl<T> Clone for HashSubsets<T>
Source§fn clone(&self) -> HashSubsets<T>
fn clone(&self) -> HashSubsets<T>
Returns a duplicate 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> Debug for HashSubsets<T>
impl<T> Debug for HashSubsets<T>
Source§impl<T> Default for HashSubsets<T>
impl<T> Default for HashSubsets<T>
Auto Trait Implementations§
impl<T> Freeze for HashSubsets<T>
impl<T> RefUnwindSafe for HashSubsets<T>where
T: RefUnwindSafe,
impl<T> Send for HashSubsets<T>where
T: Send,
impl<T> Sync for HashSubsets<T>where
T: Sync,
impl<T> Unpin for HashSubsets<T>where
T: Unpin,
impl<T> UnwindSafe for HashSubsets<T>where
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