[][src]Enum vt100::MouseProtocolMode

pub enum MouseProtocolMode {
    None,
    Press,
    PressRelease,
    ButtonMotion,
    AnyMotion,
}

The xterm mouse handling mode currently in use.

Variants

None

Mouse handling is disabled.

Press

Mouse button events should be reported on button press. Also known as X10 mouse mode.

PressRelease

Mouse button events should be reported on button press and release. Also known as VT200 mouse mode.

ButtonMotion

Mouse button events should be reported on button press and release, as well as when the mouse moves between cells while a button is held down.

AnyMotion

Mouse button events should be reported on button press and release, and mouse motion events should be reported when the mouse moves between cells regardless of whether a button is held down or not.

Trait Implementations

impl Clone for MouseProtocolMode[src]

impl Copy for MouseProtocolMode[src]

impl Default for MouseProtocolMode[src]

impl Eq for MouseProtocolMode[src]

impl PartialEq<MouseProtocolMode> for MouseProtocolMode[src]

impl Debug for MouseProtocolMode[src]

impl StructuralPartialEq for MouseProtocolMode[src]

impl StructuralEq for MouseProtocolMode[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for 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.

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

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

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