Enum textmode::Key[][src]

pub enum Key {
Show 23 variants String(String), Char(char), Bytes(Vec<u8>), Byte(u8), Ctrl(u8), Meta(u8), Backspace, Escape, Up, Down, Right, Left, KeypadUp, KeypadDown, KeypadRight, KeypadLeft, Home, End, Insert, Delete, PageUp, PageDown, F(u8),
}
Expand description

Type representing a keypress.

Variants

String(String)

Tuple Fields of String

0: String
Char(char)

Tuple Fields of Char

0: char
Bytes(Vec<u8>)

Tuple Fields of Bytes

0: Vec<u8>
Byte(u8)

Tuple Fields of Byte

0: u8
Ctrl(u8)

The associated value will be a byte corresponding to the lowercase letter for the control code. For instance, ^A will be Ctrl(b'a').

Tuple Fields of Ctrl

0: u8
Meta(u8)

Tuple Fields of Meta

0: u8
Backspace
Escape
Up
Down
Right
Left
KeypadUp
KeypadDown
KeypadRight
KeypadLeft
Home
End
Insert
Delete
PageUp
PageDown
F(u8)

The associated value will be the number corresponding to the F key. For instance, F1 will be F(1).

Tuple Fields of F

0: u8

Implementations

Returns bytes generated by the given key press.

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

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

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.