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: u16Trait Implementations§
Source§impl Clone for MoveCursorLeft
impl Clone for MoveCursorLeft
Source§fn clone(&self) -> MoveCursorLeft
fn clone(&self) -> MoveCursorLeft
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for MoveCursorLeft
Source§impl Debug for MoveCursorLeft
impl Debug for MoveCursorLeft
Source§impl Display for MoveCursorLeft
impl Display for MoveCursorLeft
impl Eq for MoveCursorLeft
Source§impl Hash for MoveCursorLeft
impl Hash for MoveCursorLeft
Source§impl PartialEq for MoveCursorLeft
impl PartialEq for MoveCursorLeft
Source§fn eq(&self, other: &MoveCursorLeft) -> bool
fn eq(&self, other: &MoveCursorLeft) -> bool
Tests for
self and other values to be equal, and is used by ==.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 UnsafeUnpin 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