Struct input_linux::KeyEvent
[−]
[src]
#[repr(C)]pub struct KeyEvent { pub time: EventTime, pub key: Key, pub value: i32, // some fields omitted }
Fields
time: EventTime
key: Key
value: i32
Methods
impl KeyEvent[src]
impl<'a> KeyEvent[src]
pub fn new(time: EventTime, key: Key, value: i32) -> Self[src]
ⓘImportant traits for &'a mut Ipub unsafe fn from_event<E: AsRef<input_event>>(event: &E) -> &Self[src]
ⓘImportant traits for &'a mut Ipub unsafe fn from_event_mut(event: &mut InputEvent) -> &mut Self[src]
pub fn as_event(&self) -> &InputEvent[src]
pub unsafe fn as_event_mut(&mut self) -> &mut InputEvent[src]
Trait Implementations
impl Copy for KeyEvent[src]
impl Clone for KeyEvent[src]
fn clone(&self) -> KeyEvent[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl PartialOrd for KeyEvent[src]
fn partial_cmp(&self, __arg_0: &KeyEvent) -> Option<Ordering>[src]
This method returns an ordering between self and other values if one exists. Read more
fn lt(&self, __arg_0: &KeyEvent) -> bool[src]
This method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, __arg_0: &KeyEvent) -> bool[src]
This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
fn gt(&self, __arg_0: &KeyEvent) -> bool[src]
This method tests greater than (for self and other) and is used by the > operator. Read more
fn ge(&self, __arg_0: &KeyEvent) -> bool[src]
This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
impl Ord for KeyEvent[src]
fn cmp(&self, __arg_0: &KeyEvent) -> Ordering[src]
This method returns an Ordering between self and other. Read more
fn max(self, other: Self) -> Self1.21.0[src]
Compares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self1.21.0[src]
Compares and returns the minimum of two values. Read more
impl PartialEq for KeyEvent[src]
fn eq(&self, __arg_0: &KeyEvent) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &KeyEvent) -> bool[src]
This method tests for !=.
impl Eq for KeyEvent[src]
impl Hash for KeyEvent[src]
fn hash<__H: Hasher>(&self, __arg_0: &mut __H)[src]
Feeds this value into the given [Hasher]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
Feeds a slice of this type into the given [Hasher]. Read more
impl Debug for KeyEvent[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl GenericEvent for KeyEvent[src]
fn event_kind(&self) -> EventKind[src]
fn time(&self) -> &EventTime[src]
fn code(&self) -> u16[src]
fn value(&self) -> i32[src]
fn from_ref(event: &InputEvent) -> Result<&Self, RangeError>[src]
fn from_mut(event: &mut InputEvent) -> Result<&mut Self, RangeError>[src]
impl<'a> From<&'a KeyEvent> for &'a InputEvent[src]
impl<'a> From<&'a KeyEvent> for InputEvent[src]
impl From<KeyEvent> for InputEvent[src]
impl AsRef<InputEvent> for KeyEvent[src]
fn as_ref(&self) -> &InputEvent[src]
Performs the conversion.
impl AsRef<input_event> for KeyEvent[src]
fn as_ref(&self) -> &input_event[src]
Performs the conversion.