Struct anes::MoveCursorRight
source · pub struct MoveCursorRight(pub u16);
Expand description
Moves the cursor right by the given number of columns.
Examples
use std::io::{stdout, Write};
use anes::MoveCursorRight;
let mut stdout = stdout();
// Move cursor right by 5 columns
write!(stdout, "{}", MoveCursorRight(5));
Tuple Fields§
§0: u16
Trait Implementations§
source§impl Clone for MoveCursorRight
impl Clone for MoveCursorRight
source§fn clone(&self) -> MoveCursorRight
fn clone(&self) -> MoveCursorRight
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for MoveCursorRight
impl Debug for MoveCursorRight
source§impl Display for MoveCursorRight
impl Display for MoveCursorRight
source§impl Hash for MoveCursorRight
impl Hash for MoveCursorRight
source§impl PartialEq for MoveCursorRight
impl PartialEq for MoveCursorRight
source§fn eq(&self, other: &MoveCursorRight) -> bool
fn eq(&self, other: &MoveCursorRight) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for MoveCursorRight
impl Eq for MoveCursorRight
impl StructuralEq for MoveCursorRight
impl StructuralPartialEq for MoveCursorRight
Auto Trait Implementations§
impl RefUnwindSafe for MoveCursorRight
impl Send for MoveCursorRight
impl Sync for MoveCursorRight
impl Unpin for MoveCursorRight
impl UnwindSafe for MoveCursorRight
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