Enum enigo::Key

source ·
pub enum Key {
Show 96 variants Alt, Backspace, Break, Begin, Cancel, CapsLock, Clear, Command, Control, Delete, DownArrow, End, Escape, Execute, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14, F15, F16, F17, F18, F19, F20, F21, F22, F23, F24, F25, F26, F27, F28, F29, F30, F31, F32, F33, F34, F35, Find, Hangul, Hanja, Help, Home, Insert, Kanji, LControl, LeftArrow, Linefeed, LMenu, LShift, MediaNextTrack, MediaPlayPause, MediaPrevTrack, MediaStop, Meta, ModeChange, Numlock, Option, PageDown, PageUp, Pause, Print, RControl, Redo, Return, RightArrow, RShift, ScrollLock, Select, ScriptSwitch, Shift, ShiftLock, Space, Super, SysReq, Tab, Undo, UpArrow, VolumeDown, VolumeMute, VolumeUp, MicMute, Windows, Unicode(char), Other(u32),
}
Expand description

Contains the available keycodes Use Key::Unicode to enter arbitrary Unicode chars. If a key is missing, please open an issue in our repo and we will quickly add it. In the mean time, you can simulate that key by using Key::Other or the crate::Keyboard::raw function. Some of the keys are only available on a specific platform. Use conditional compilation to use them.

Variants§

§

Alt

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

§

Backspace

backspace key

§

Break

§

Begin

§

Cancel

§

CapsLock

caps lock key

§

Clear

§

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)

§

Execute

§

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

§

F21

F21 key

§

F22

F22 key

§

F23

F23 key

§

F24

F24 key

§

F25

§

F26

§

F27

§

F28

§

F29

§

F30

§

F31

§

F32

§

F33

§

F34

§

F35

§

Find

§

Hangul

§

Hanja

§

Help

§

Home

home key

§

Insert

§

Kanji

§

LControl

§

LeftArrow

left arrow key

§

Linefeed

§

LMenu

§

LShift

§

MediaNextTrack

§

MediaPlayPause

§

MediaPrevTrack

§

MediaStop

§

Meta

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

§

ModeChange

§

Numlock

§

Option

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

§

PageDown

page down key

§

PageUp

page up key

§

Pause

§

Print

§

RControl

§

Redo

§

Return

return key

§

RightArrow

right arrow key

§

RShift

§

ScrollLock

§

Select

§

ScriptSwitch

§

Shift

shift key

§

ShiftLock

Lock 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)

§

SysReq

§

Tab

tab key (tabulator)

§

Undo

§

UpArrow

up arrow key

§

VolumeDown

§

VolumeMute

§

VolumeUp

§

MicMute

microphone mute toggle on linux

§

Windows

👎Deprecated since 0.0.12: now renamed to Meta

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

§

Unicode(char)

Unicode character

§

Other(u32)

Use this for keys that are not listed here that you know the value of. Let us know if you think the key should be listed so we can add it On Linux, this will result in a keysym, On Windows, this will result in a Virtual_Key and On macOS, this will yield a KeyCode

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<'de> Deserialize<'de> for Key

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl From<Key> for Keysym

Converts a Key to a Keysym

source§

fn from(key: Key) -> Self

Converts to this type from the input type.
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 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 Serialize for Key

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl Copy for Key

source§

impl Eq for Key

source§

impl StructuralPartialEq for Key

Auto Trait Implementations§

§

impl Freeze for Key

§

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 T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> Downcast for T
where T: Any,

source§

fn into_any(self: Box<T>) -> Box<dyn Any>

Convert Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.
source§

fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>

Convert Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait.
source§

fn as_any(&self) -> &(dyn Any + 'static)

Convert &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &Any’s vtable from &Trait’s.
source§

fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)

Convert &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Any’s vtable from &mut Trait’s.
source§

impl<T> DowncastSync for T
where T: Any + Send + Sync,

source§

fn into_any_arc(self: Arc<T>) -> Arc<dyn Any + Send + Sync>

Convert Arc<Trait> (where Trait: Downcast) to Arc<Any>. Arc<Any> can then be further downcast into Arc<ConcreteType> where ConcreteType implements Trait.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

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

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> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where 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 T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

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

Performs the conversion.
source§

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

§

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

The type returned in the event of a conversion error.
source§

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

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,