pub struct Subsets(pub Vec<Subset>);
Tuple Fields§
§0: Vec<Subset>
Implementations§
source§impl Subsets
impl Subsets
pub fn new() -> Self
sourcepub fn get_index_at(&self, index: usize) -> Option<usize>
pub fn get_index_at(&self, index: usize) -> Option<usize>
Get the raw index of a index applied to a subset
Provided a vector with multiple subsets applied, determine which original index corresponds with the index applied to the subset.
pub fn len(&self) -> usize
pub fn is_empty(&self) -> bool
pub fn push<T>(&mut self, subset: T)
pub fn bind_names( self, names: CowObj<HashMap<String, Vec<usize>>>, ) -> NamedSubsets
Trait Implementations§
source§impl IntoIterator for Subsets
impl IntoIterator for Subsets
impl StructuralPartialEq for Subsets
Auto Trait Implementations§
impl Freeze for Subsets
impl !RefUnwindSafe for Subsets
impl !Send for Subsets
impl !Sync for Subsets
impl Unpin for Subsets
impl !UnwindSafe for Subsets
Blanket Implementations§
source§impl<T> AsDynCompare for Twhere
T: Any + DynCompare,
impl<T> AsDynCompare for Twhere
T: Any + DynCompare,
fn as_any(&self) -> &(dyn Any + 'static)
fn as_dyn_compare(&self) -> &(dyn DynCompare + 'static)
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> DynCompare for T
impl<T> DynCompare for T
fn dyn_eq(&self, other: &(dyn DynCompare + 'static)) -> bool
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