pub enum CursorMove {
X(i16),
XY(i16, i16),
Y(i16),
}Expand description
Set the position of the cursor relative to its current position.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CursorMove
impl RefUnwindSafe for CursorMove
impl Send for CursorMove
impl Sync for CursorMove
impl Unpin for CursorMove
impl UnwindSafe for CursorMove
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