pub enum Direction {
None,
Up,
Down,
Left,
Right,
}Expand description
Which way a fill or selection extends from its anchor cell.
Variants§
None
No direction; the operation is a no-op.
Up
Toward row 0.
Down
Toward the last row.
Left
Toward column 0.
Right
Toward the last column.
Trait Implementations§
impl Copy for Direction
impl StructuralPartialEq for Direction
Auto Trait Implementations§
impl Freeze for Direction
impl RefUnwindSafe for Direction
impl Send for Direction
impl Sync for Direction
impl Unpin for Direction
impl UnsafeUnpin for Direction
impl UnwindSafe for Direction
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