pub struct MoveTo(pub u16, pub u16);
Expand description
A command that moves the terminal cursor to the given position (column, row).
§Notes
- Top left cell is represented as
0,0
. - Commands must be executed/queued for execution otherwise they do nothing.
Tuple Fields§
§0: u16
§1: u16
Trait Implementations§
source§impl PartialEq for MoveTo
impl PartialEq for MoveTo
impl Copy for MoveTo
impl Eq for MoveTo
impl StructuralPartialEq for MoveTo
Auto Trait Implementations§
impl Freeze for MoveTo
impl RefUnwindSafe for MoveTo
impl Send for MoveTo
impl Sync for MoveTo
impl Unpin for MoveTo
impl UnwindSafe for MoveTo
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