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