pub enum Cmd {
ShowCursor,
HideCursor,
MoveCursor(usize, usize),
MoveCursorToHome,
ClearScreen,
EnableAlternativeScreen,
DisableAlternativeScreen,
EnableMouseReporting,
DisableMouseReporting,
EnableSgrCoords,
DisableSgrCoords,
}Expand description
Represents terminal commands.
Variants§
ShowCursor
HideCursor
MoveCursor(usize, usize)
MoveCursorToHome
ClearScreen
EnableAlternativeScreen
DisableAlternativeScreen
EnableMouseReporting
DisableMouseReporting
EnableSgrCoords
DisableSgrCoords
Auto Trait Implementations§
impl Freeze for Cmd
impl RefUnwindSafe for Cmd
impl Send for Cmd
impl Sync for Cmd
impl Unpin for Cmd
impl UnwindSafe for Cmd
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