Enum enigo::Key

source ·
pub enum Key {
Show 45 variants Alt, Backspace, CapsLock, Command, Control, Delete, DownArrow, End, Escape, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14, F15, F16, F17, F18, F19, F20, Home, LeftArrow, Meta, Option, PageDown, PageUp, Return, RightArrow, Shift, Space, Super, Tab, UpArrow, Windows, Layout(char), Raw(u16),
}
Expand description

A key on the keyboard. For alphabetical keys, use Key::Layout for a system independent key. If a key is missing, you can use the raw keycode with Key::Raw.

Variants§

§

Alt

alt key on Linux and Windows (option key on macOS)

§

Backspace

backspace key

§

CapsLock

caps lock key

§

Command

👎Deprecated since 0.0.12: now renamed to Meta

command key on macOS (super key on Linux, windows key on Windows)

§

Control

control key

§

Delete

delete key

§

DownArrow

down arrow key

§

End

end key

§

Escape

escape key (esc)

§

F1

F1 key

§

F2

F2 key

§

F3

F3 key

§

F4

F4 key

§

F5

F5 key

§

F6

F6 key

§

F7

F7 key

§

F8

F8 key

§

F9

F9 key

§

F10

F10 key

§

F11

F11 key

§

F12

F12 key

§

F13

F13 key

§

F14

F14 key

§

F15

F15 key

§

F16

F16 key

§

F17

F17 key

§

F18

F18 key

§

F19

F19 key

§

F20

F20 key

§

Home

home key

§

LeftArrow

left arrow key

§

Meta

meta key (also known as “windows”, “super”, and “command”)

§

Option

option key on macOS (alt key on Linux and Windows)

§

PageDown

page down key

§

PageUp

page up key

§

Return

return key

§

RightArrow

right arrow key

§

Shift

shift key

§

Space

space key

§

Super

👎Deprecated since 0.0.12: now renamed to Meta

super key on linux (command key on macOS, windows key on Windows)

§

Tab

tab key (tabulator)

§

UpArrow

up arrow key

§

Windows

👎Deprecated since 0.0.12: now renamed to Meta

windows key on Windows (super key on Linux, command key on macOS)

§

Layout(char)

keyboard layout dependent key

§

Raw(u16)

raw keycode eg 0x38

Trait Implementations§

source§

impl Clone for Key

source§

fn clone(&self) -> Key

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Key

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Hash for Key

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq<Key> for Key

source§

fn eq(&self, other: &Key) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Copy for Key

source§

impl Eq for Key

source§

impl StructuralEq for Key

source§

impl StructuralPartialEq for Key

Auto Trait Implementations§

§

impl RefUnwindSafe for Key

§

impl Send for Key

§

impl Sync for Key

§

impl Unpin for Key

§

impl UnwindSafe for Key

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

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

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.