Enum console::Key
[−]
[src]
pub enum Key {
Unknown,
ArrowLeft,
ArrowRight,
ArrowUp,
ArrowDown,
Enter,
Escape,
Char(char),
// some variants omitted
}Key mapping
This is an incomplete mapping of keys that are supported for reading from the keyboard.
Variants
UnknownArrowLeftArrowRightArrowUpArrowDownEnterEscapeChar(char)Trait Implementations
impl Copy for Key[src]
impl Clone for Key[src]
fn clone(&self) -> Key
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl PartialEq for Key[src]
fn eq(&self, __arg_0: &Key) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &Key) -> bool
This method tests for !=.