[][src]Struct show_image::KeyboardEvent

pub struct KeyboardEvent {
    pub state: KeyState,
    pub key: Key,
    pub code: Code,
    pub location: Location,
    pub modifiers: Modifiers,
    pub repeat: bool,
    pub is_composing: bool,
}

Keyboard events are issued for all pressed and released keys.

Fields

state: KeyState

Whether the key is pressed or released.

key: Key

Logical key value.

code: Code

Physical key position.

location: Location

Location for keys with multiple instances on common keyboards.

modifiers: Modifiers

Flags for pressed modifier keys.

repeat: bool

True if the key is currently auto-repeated.

is_composing: bool

Events with this flag should be ignored in a text editor and instead composition events should be used.

Trait Implementations

impl Clone for KeyboardEvent[src]

impl Debug for KeyboardEvent[src]

impl Default for KeyboardEvent[src]

impl<'de> Deserialize<'de> for KeyboardEvent[src]

impl Eq for KeyboardEvent[src]

impl Hash for KeyboardEvent[src]

impl PartialEq<KeyboardEvent> for KeyboardEvent[src]

impl Serialize for KeyboardEvent[src]

impl StructuralEq for KeyboardEvent[src]

impl StructuralPartialEq for KeyboardEvent[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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

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

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

impl<T> SetParameter for T

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.