pub enum MultiSelectRangeDirection {
Forward,
Backward,
}Expand description
Iteration order requested for a selected range.
Variants§
Forward
Visit the first item before the last item.
Backward
Visit the last item before the first item.
Trait Implementations§
Source§impl Clone for MultiSelectRangeDirection
impl Clone for MultiSelectRangeDirection
Source§fn clone(&self) -> MultiSelectRangeDirection
fn clone(&self) -> MultiSelectRangeDirection
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for MultiSelectRangeDirection
Source§impl Debug for MultiSelectRangeDirection
impl Debug for MultiSelectRangeDirection
impl Eq for MultiSelectRangeDirection
impl StructuralPartialEq for MultiSelectRangeDirection
Auto Trait Implementations§
impl Freeze for MultiSelectRangeDirection
impl RefUnwindSafe for MultiSelectRangeDirection
impl Send for MultiSelectRangeDirection
impl Sync for MultiSelectRangeDirection
impl Unpin for MultiSelectRangeDirection
impl UnsafeUnpin for MultiSelectRangeDirection
impl UnwindSafe for MultiSelectRangeDirection
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