Enum datafusion_rustyline::KeyPress[][src]

pub enum KeyPress {
    UnknownEscSeq,
    Backspace,
    Char(char),
    ControlDown,
    ControlLeft,
    ControlRight,
    ControlUp,
    Ctrl(char),
    Delete,
    Down,
    End,
    Enter,
    Esc,
    F(u8),
    Home,
    Insert,
    Left,
    Meta(char),
    Null,
    PageDown,
    PageUp,
    Right,
    ShiftDown,
    ShiftLeft,
    ShiftRight,
    ShiftUp,
    Tab,
    Up,
}

Variants

Trait Implementations

impl Debug for KeyPress
[src]

Formats the value using the given formatter. Read more

impl Clone for KeyPress
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for KeyPress
[src]

impl PartialEq for KeyPress
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for KeyPress
[src]

impl Hash for KeyPress
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations

impl Send for KeyPress

impl Sync for KeyPress