Struct conrod::event::KeyRelease[][src]

pub struct KeyRelease {
    pub key: Key,
    pub modifiers: ModifierKey,
}

Contains all relevant information for the event where a keyboard button was release.

Fields

The key that was release.

The modifier keys that were down at the time.

Trait Implementations

impl Copy for KeyRelease
[src]

impl Clone for KeyRelease
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for KeyRelease
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Debug for KeyRelease
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for KeyRelease

impl Sync for KeyRelease