pub enum ActiveKeyIdx {
ExactRow(usize),
PrevRow(usize),
BeforeFirstRow,
AfterLastRow,
}Variants§
ExactRow(usize)
key is on this row
PrevRow(usize)
key is on a previous row
BeforeFirstRow
the row is before the first key
AfterLastRow
row moved past the last row
Auto Trait Implementations§
impl Freeze for ActiveKeyIdx
impl RefUnwindSafe for ActiveKeyIdx
impl Send for ActiveKeyIdx
impl Sync for ActiveKeyIdx
impl Unpin for ActiveKeyIdx
impl UnwindSafe for ActiveKeyIdx
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