pub enum SomeElementType {
Individual(usize),
Range(RangeInclusive<usize>),
}
Expand description
A selected element. Can either be an individual item, or a range of items.
Variants§
Individual(usize)
Range(RangeInclusive<usize>)
Trait Implementations§
Source§impl Debug for SomeElementType
impl Debug for SomeElementType
Source§impl PartialEq for SomeElementType
impl PartialEq for SomeElementType
impl StructuralPartialEq for SomeElementType
Auto Trait Implementations§
impl Freeze for SomeElementType
impl RefUnwindSafe for SomeElementType
impl Send for SomeElementType
impl Sync for SomeElementType
impl Unpin for SomeElementType
impl UnwindSafe for SomeElementType
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