pub enum CursorTo {
TopLeft,
AbsoluteX(u16),
AbsoluteXY(u16, u16),
}Expand description
Set the absolute position of the cursor. x=0 y=0 is the top left of the screen.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CursorTo
impl RefUnwindSafe for CursorTo
impl Send for CursorTo
impl Sync for CursorTo
impl Unpin for CursorTo
impl UnwindSafe for CursorTo
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