pub struct MoveCursorLeft(pub u16);
Expand description
Moves the cursor left by the given number of columns.
§Examples
use std::io::{stdout, Write};
use anes::MoveCursorLeft;
let mut stdout = stdout();
// Move cursor left by 5 columns
write!(stdout, "{}", MoveCursorLeft(5));
Tuple Fields§
§0: u16
Trait Implementations§
Source§impl Clone for MoveCursorLeft
impl Clone for MoveCursorLeft
Source§fn clone(&self) -> MoveCursorLeft
fn clone(&self) -> MoveCursorLeft
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 MoveCursorLeft
impl Debug for MoveCursorLeft
Source§impl Display for MoveCursorLeft
impl Display for MoveCursorLeft
Source§impl Hash for MoveCursorLeft
impl Hash for MoveCursorLeft
Source§impl PartialEq for MoveCursorLeft
impl PartialEq for MoveCursorLeft
impl Copy for MoveCursorLeft
impl Eq for MoveCursorLeft
impl StructuralPartialEq for MoveCursorLeft
Auto Trait Implementations§
impl Freeze for MoveCursorLeft
impl RefUnwindSafe for MoveCursorLeft
impl Send for MoveCursorLeft
impl Sync for MoveCursorLeft
impl Unpin for MoveCursorLeft
impl UnwindSafe for MoveCursorLeft
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 2 bytes