pub enum DimFilter {
Any,
Exact(usize),
Range {
start: usize,
end: usize,
},
}Variants§
Any
Wildcard: match any index along this dimension.
Exact(usize)
Match a single exact index.
Range
Inclusive range: matches start..=end.
(CUBE_TEST_MODE’s M-K filter and the parser produce this variant.)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DimFilter
impl RefUnwindSafe for DimFilter
impl Send for DimFilter
impl Sync for DimFilter
impl Unpin for DimFilter
impl UnsafeUnpin for DimFilter
impl UnwindSafe for DimFilter
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