pub enum EscCommand {
Show 15 variants
Scsg0On,
Scsg1On,
Decsc,
Decrc,
Decaln,
Deckpam,
Deckpnm,
Scsg0Off,
Scsg1Off,
Ind,
Nel,
Hts,
Ri,
St,
Ris,
}Expand description
ESC sequence commands (15 entries).
Variants§
Scsg0On
ESC ( 0 — G0 ACS on.
Scsg1On
ESC ) 0 — G1 ACS on.
Decsc
ESC 7 — Save cursor (DECSC).
Decrc
ESC 8 — Restore cursor (DECRC).
Decaln
ESC # 8 — Alignment test (DECALN).
Deckpam
ESC = — Keypad application mode (DECKPAM).
Deckpnm
ESC > — Keypad numeric mode (DECKPNM).
Scsg0Off
ESC ( B — G0 ACS off.
Scsg1Off
ESC ) B — G1 ACS off.
Ind
ESC D — Index (IND).
Nel
ESC E — Next line (NEL).
Hts
ESC H — Horizontal tab set (HTS).
Ri
ESC M — Reverse index (RI).
St
ESC \ — String terminator (ST).
Ris
ESC c — Reset to initial state (RIS).
Trait Implementations§
Source§impl Clone for EscCommand
impl Clone for EscCommand
Source§fn clone(&self) -> EscCommand
fn clone(&self) -> EscCommand
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 EscCommand
Source§impl Debug for EscCommand
impl Debug for EscCommand
impl Eq for EscCommand
Source§impl PartialEq for EscCommand
impl PartialEq for EscCommand
impl StructuralPartialEq for EscCommand
Auto Trait Implementations§
impl Freeze for EscCommand
impl RefUnwindSafe for EscCommand
impl Send for EscCommand
impl Sync for EscCommand
impl Unpin for EscCommand
impl UnsafeUnpin for EscCommand
impl UnwindSafe for EscCommand
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