[][src]Enum webview2::KeyEventKind

#[repr(u32)]pub enum KeyEventKind {
    KeyDown,
    KeyUp,
    SystemKeyDown,
    SystemKeyUp,
}

The type of key event that triggered an AcceleratorKeyPressed event.

Variants

KeyDown

Correspond to window message WM_KEYDOWN.

KeyUp

Correspond to window message WM_KEYUP.

SystemKeyDown

Correspond to window message WM_SYSKEYDOWN.

SystemKeyUp

Correspond to window message WM_SYSKEYUP.

Trait Implementations

impl Clone for KeyEventKind[src]

impl Copy for KeyEventKind[src]

impl Debug for KeyEventKind[src]

impl Eq for KeyEventKind[src]

impl PartialEq<KeyEventKind> for KeyEventKind[src]

impl StructuralEq for KeyEventKind[src]

impl StructuralPartialEq for KeyEventKind[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.