Enum console_codes::PrivateMode[][src]

pub enum PrivateMode {
    DECCKM,
    DECCOLM,
    DECSCNM,
    DECOM,
    DECAWM,
    DECARM,
    X10MR1,
    DECTECM,
    X11MR2,
}

Variants

DECCKM

Cursor keys ESC 0 prefix instead of ESC [

DECCOLM

80/132 col mode switch

DECSCNM

Set reverse video mode

DECOM

Set cursor addressing relative to upper left corner of scrolling region

DECAWM

Set autowrap on

DECARM

Set keyboard autorepeat on

X10MR1

X10 Mouse reporting mode 1 or reset to 0

DECTECM

Make cursor visible

X11MR2

X11 Mouse reporting mode 2 or reset to 0

Trait Implementations

impl Clone for PrivateMode[src]

impl Copy for PrivateMode[src]

impl Debug for PrivateMode[src]

impl Eq for PrivateMode[src]

impl PartialEq<PrivateMode> for PrivateMode[src]

impl StructuralEq for PrivateMode[src]

impl StructuralPartialEq for PrivateMode[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.