pub enum IndexSpec {
Index(usize),
Slice(usize, Option<usize>, Option<usize>),
Indices(Vec<usize>),
Mask(Vec<bool>),
All,
Ellipsis,
NewAxis,
}Expand description
Represents an index specification for a single dimension
Variants§
Index(usize)
A single index
Slice(usize, Option<usize>, Option<usize>)
A range of indices with start, end, and optional step
Indices(Vec<usize>)
A set of arbitrary indices
Mask(Vec<bool>)
A boolean mask
All
All indices
Ellipsis
Ellipsis (…) - expands to the number of : needed for selection
NewAxis
NewAxis (np.newaxis) - inserts a new axis of length 1
Implementations§
Source§impl IndexSpec
impl IndexSpec
Sourcepub fn slice(start: usize, end: Option<usize>, step: Option<usize>) -> Self
pub fn slice(start: usize, end: Option<usize>, step: Option<usize>) -> Self
Create a new slice specification
Sourcepub fn from_range(range: Range<usize>) -> Self
pub fn from_range(range: Range<usize>) -> Self
Create a new index specification from a range
Sourcepub fn from_indices(indices: Vec<usize>) -> Self
pub fn from_indices(indices: Vec<usize>) -> Self
Create a new index specification from a vector of indices
Trait Implementations§
Auto Trait Implementations§
impl Freeze for IndexSpec
impl RefUnwindSafe for IndexSpec
impl Send for IndexSpec
impl Sync for IndexSpec
impl Unpin for IndexSpec
impl UnsafeUnpin for IndexSpec
impl UnwindSafe for IndexSpec
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
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 moreSource§impl<T> Pointable for T
impl<T> Pointable for T
impl<T> Read<Exclusive, BecauseExclusive> for Twhere
T: ?Sized,
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§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 moreSource§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).Source§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.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.