#[repr(C)]pub struct KeyEvent {
pub time: EventTime,
pub key: Key,
pub value: KeyState,
/* private fields */
}
Expand description
An event that indicates the state of a key has changed.
Fields§
§time: EventTime
The timestamp associated with the event.
key: Key
The key that triggered the event.
value: KeyState
The value of the event.
Implementations§
Source§impl<'a> KeyEvent
impl<'a> KeyEvent
Sourcepub const fn new(time: EventTime, key: Key, value: KeyState) -> Self
pub const fn new(time: EventTime, key: Key, value: KeyState) -> Self
Creates a new event from the given code and value.
Sourcepub unsafe fn from_event<E: AsRef<input_event>>(event: &E) -> &Self
pub unsafe fn from_event<E: AsRef<input_event>>(event: &E) -> &Self
Reinterpret a generic event without checking for validity.
Sourcepub unsafe fn from_event_mut(event: &mut InputEvent) -> &mut Self
pub unsafe fn from_event_mut(event: &mut InputEvent) -> &mut Self
Reinterpret a mutable generic event without checking for validity.
Sourcepub fn into_event(self) -> InputEvent
pub fn into_event(self) -> InputEvent
A generic input event.
Sourcepub fn as_event(&self) -> &InputEvent
pub fn as_event(&self) -> &InputEvent
A generic input event reference.
Sourcepub unsafe fn as_event_mut(&mut self) -> &mut InputEvent
pub unsafe fn as_event_mut(&mut self) -> &mut InputEvent
A mutable generic input event reference.
Trait Implementations§
Source§impl AsRef<InputEvent> for KeyEvent
impl AsRef<InputEvent> for KeyEvent
Source§fn as_ref(&self) -> &InputEvent
fn as_ref(&self) -> &InputEvent
Converts this type into a shared reference of the (usually inferred) input type.
Source§impl AsRef<input_event> for KeyEvent
impl AsRef<input_event> for KeyEvent
Source§fn as_ref(&self) -> &input_event
fn as_ref(&self) -> &input_event
Converts this type into a shared reference of the (usually inferred) input type.
Source§impl<'de> Deserialize<'de> for KeyEvent
impl<'de> Deserialize<'de> for KeyEvent
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
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<'a> From<&'a KeyEvent> for &'a InputEvent
impl<'a> From<&'a KeyEvent> for &'a InputEvent
Source§impl<'a> From<&'a KeyEvent> for InputEvent
impl<'a> From<&'a KeyEvent> for InputEvent
Source§impl From<KeyEvent> for InputEvent
impl From<KeyEvent> for InputEvent
Source§impl GenericEvent for KeyEvent
impl GenericEvent for KeyEvent
Source§fn event_kind(&self) -> EventKind
fn event_kind(&self) -> EventKind
The event kind.
Source§fn with_event(event: InputEvent) -> Result<Self, RangeError>
fn with_event(event: InputEvent) -> Result<Self, RangeError>
Interprets a generic event into a concrete event type.
Source§unsafe fn with_event_unchecked(event: InputEvent) -> Self
unsafe fn with_event_unchecked(event: InputEvent) -> Self
Interprets a generic event into a concrete event type. Read more
Source§fn from_ref(event: &InputEvent) -> Result<&Self, RangeError>
fn from_ref(event: &InputEvent) -> Result<&Self, RangeError>
Interprets a generic event reference into a concrete event type.
Source§fn from_mut(event: &mut InputEvent) -> Result<&mut Self, RangeError>
fn from_mut(event: &mut InputEvent) -> Result<&mut Self, RangeError>
Interprets a mutable generic event reference into a concrete event type.
Source§impl Ord for KeyEvent
impl Ord for KeyEvent
Source§impl PartialOrd for KeyEvent
impl PartialOrd for KeyEvent
Source§impl<'a> TryFrom<&'a InputEvent> for &'a KeyEvent
impl<'a> TryFrom<&'a InputEvent> for &'a KeyEvent
Source§type Error = RangeError
type Error = RangeError
The type returned in the event of a conversion error.
Source§impl<'a> TryFrom<&'a mut InputEvent> for &'a mut KeyEvent
impl<'a> TryFrom<&'a mut InputEvent> for &'a mut KeyEvent
Source§type Error = RangeError
type Error = RangeError
The type returned in the event of a conversion error.
Source§impl TryFrom<InputEvent> for KeyEvent
impl TryFrom<InputEvent> for KeyEvent
Source§type Error = RangeError
type Error = RangeError
The type returned in the event of a conversion error.
impl Copy for KeyEvent
impl Eq for KeyEvent
impl StructuralPartialEq for KeyEvent
Auto Trait Implementations§
impl Freeze for KeyEvent
impl RefUnwindSafe for KeyEvent
impl Send for KeyEvent
impl Sync for KeyEvent
impl Unpin for KeyEvent
impl UnwindSafe for KeyEvent
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more