pub enum Key {
Show 17 variants ArrowDown, ArrowLeft, ArrowRight, ArrowUp, Backspace, CarriageReturn, Char(char), End, Eof, Escape, Interrupt, Home, NewLine, PageDown, PageUp, Tab, Unknown(String),
}
Expand description

Decoded key presses as returned by the console.

Variants

ArrowDown

The cursor down key.

ArrowLeft

The cursor left key.

ArrowRight

The cursor right key.

ArrowUp

The cursor up key.

Backspace

Deletes the previous character.

CarriageReturn

Accepts the current line.

Char(char)

A printable character.

End

The end key or Ctrl-E.

Eof

Indicates a request for termination (e.g. Ctrl-D).

Escape

The escape key.

Interrupt

Indicates a request for interrupt (e.g. Ctrl-C).

Home

The home key or Ctrl-A.

NewLine

Accepts the current line.

PageDown

The Page Down key.

PageUp

The Page Up key.

Tab

The Tab key.

Unknown(String)

An unknown character or sequence. The text describes what went wrong.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

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

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.