[][src]Enum subor_rs::input_manager_s_d_k_data_types::Key

pub enum Key {
    Unknown,
    Escape,
    D1,
    D2,
    D3,
    D4,
    D5,
    D6,
    D7,
    D8,
    D9,
    D0,
    Minus,
    Equals,
    Back,
    Tab,
    Q,
    W,
    E,
    R,
    T,
    Y,
    U,
    I,
    O,
    P,
    LeftBracket,
    RightBracket,
    Return,
    LeftControl,
    A,
    S,
    D,
    F,
    G,
    H,
    J,
    K,
    L,
    Semicolon,
    Apostrophe,
    Grave,
    LeftShift,
    Backslash,
    Z,
    X,
    C,
    V,
    B,
    N,
    M,
    Comma,
    Period,
    Slash,
    RightShift,
    Multiply,
    LeftAlt,
    Space,
    Capital,
    F1,
    F2,
    F3,
    F4,
    F5,
    F6,
    F7,
    F8,
    F9,
    F10,
    NumberLock,
    ScrollLock,
    NumberPad7,
    NumberPad8,
    NumberPad9,
    Subtract,
    NumberPad4,
    NumberPad5,
    NumberPad6,
    Add,
    NumberPad1,
    NumberPad2,
    NumberPad3,
    NumberPad0,
    Decimal,
    Oem102,
    F11,
    F12,
    F13,
    F14,
    F15,
    Kana,
    AbntC1,
    Convert,
    NoConvert,
    Yen,
    AbntC2,
    NumberPadEquals,
    PreviousTrack,
    At,
    Colon,
    Underline,
    Kanji,
    Stop,
    Ax,
    Unlabeled,
    NextTrack,
    NumberPadEnter,
    RightControl,
    Mute,
    Calculator,
    PlayPause,
    MediaStop,
    VolumeDown,
    VolumeUp,
    WebHome,
    NumberPadComma,
    Divide,
    PrintScreen,
    RightAlt,
    Pause,
    Home,
    Up,
    PageUp,
    Left,
    Right,
    End,
    Down,
    PageDown,
    Insert,
    Delete,
    LeftWindowsKey,
    RightWindowsKey,
    Applications,
    Power,
    Sleep,
    Wake,
    WebSearch,
    WebFavorites,
    WebRefresh,
    WebStop,
    WebForward,
    WebBack,
    MyComputer,
    Mail,
    MediaSelect,
}

@Key_desc

Variants

UnknownEscapeD1D2D3D4D5D6D7D8D9D0MinusEqualsBackTabQWERTYUIOPLeftBracketRightBracketReturnLeftControlASDFGHJKLSemicolonApostropheGraveLeftShiftBackslashZXCVBNMCommaPeriodSlashRightShiftMultiplyLeftAltSpaceCapitalF1F2F3F4F5F6F7F8F9F10NumberLockScrollLockNumberPad7NumberPad8NumberPad9SubtractNumberPad4NumberPad5NumberPad6AddNumberPad1NumberPad2NumberPad3NumberPad0DecimalOem102F11F12F13F14F15KanaAbntC1ConvertNoConvertYenAbntC2NumberPadEqualsPreviousTrackAtColonUnderlineKanjiStopAxUnlabeledNextTrackNumberPadEnterRightControlMuteCalculatorPlayPauseMediaStopVolumeDownVolumeUpWebHomeNumberPadCommaDividePrintScreenRightAltPauseHomeUpPageUpLeftRightEndDownPageDownInsertDeleteLeftWindowsKeyRightWindowsKeyApplicationsPowerSleepWakeWebSearchWebFavoritesWebRefreshWebStopWebForwardWebBackMyComputerMailMediaSelect

Methods

impl Key[src]

pub fn write_to_out_protocol(
    &self,
    o_prot: &mut dyn TOutputProtocol
) -> Result<()>
[src]

pub fn read_from_in_protocol(i_prot: &mut dyn TInputProtocol) -> Result<Key>[src]

Trait Implementations

impl PartialEq<Key> for Key[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests for !=.

impl Ord for Key[src]

fn max(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the minimum of two values. Read more

impl Clone for Key[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Eq for Key[src]

impl Copy for Key[src]

impl PartialOrd<Key> for Key[src]

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Hash for Key[src]

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

Feeds a slice of this type into the given [Hasher]. Read more

impl Debug for Key[src]

impl TryFrom<i32> for Key[src]

type Err = Error

Auto Trait Implementations

impl Send for Key

impl Sync for Key

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

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

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

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

The type returned in the event of a conversion error.

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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