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