pub struct AnsiSequences;Expand description
ANSI escape sequence helpers.
Implementations§
Source§impl AnsiSequences
impl AnsiSequences
Sourcepub const CURSOR_DOWN: &'static [u8] = b"\x1b[B"
pub const CURSOR_DOWN: &'static [u8] = b"\x1b[B"
Cursor down.
Sourcepub const CURSOR_RIGHT: &'static [u8] = b"\x1b[C"
pub const CURSOR_RIGHT: &'static [u8] = b"\x1b[C"
Cursor right.
Sourcepub const CURSOR_LEFT: &'static [u8] = b"\x1b[D"
pub const CURSOR_LEFT: &'static [u8] = b"\x1b[D"
Cursor left.
Auto Trait Implementations§
impl Freeze for AnsiSequences
impl RefUnwindSafe for AnsiSequences
impl Send for AnsiSequences
impl Sync for AnsiSequences
impl Unpin for AnsiSequences
impl UnwindSafe for AnsiSequences
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