pub enum IterSpec {
All,
Single(i32),
Range(Option<i32>, Option<i32>),
}Expand description
Iteration filter attached to a category. None endpoints denote
open-ended ranges (N- is Range(Some(N), None)).
Variants§
Implementations§
Trait Implementations§
impl Copy for IterSpec
impl Eq for IterSpec
impl StructuralPartialEq for IterSpec
Auto Trait Implementations§
impl Freeze for IterSpec
impl RefUnwindSafe for IterSpec
impl Send for IterSpec
impl Sync for IterSpec
impl Unpin for IterSpec
impl UnsafeUnpin for IterSpec
impl UnwindSafe for IterSpec
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