Struct input_linux::SynchronizeEvent
[−]
[src]
#[repr(C)]pub struct SynchronizeEvent { pub time: EventTime, pub kind: SynchronizeKind, pub value: i32, // some fields omitted }
Fields
time: EventTime
kind: SynchronizeKind
value: i32
Methods
impl<'a> SynchronizeEvent[src]
pub fn new(time: EventTime, kind: SynchronizeKind, 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 SynchronizeEvent[src]
impl Clone for SynchronizeEvent[src]
fn clone(&self) -> SynchronizeEvent[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 SynchronizeEvent[src]
fn partial_cmp(&self, __arg_0: &SynchronizeEvent) -> Option<Ordering>[src]
This method returns an ordering between self and other values if one exists. Read more
fn lt(&self, __arg_0: &SynchronizeEvent) -> bool[src]
This method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, __arg_0: &SynchronizeEvent) -> 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: &SynchronizeEvent) -> bool[src]
This method tests greater than (for self and other) and is used by the > operator. Read more
fn ge(&self, __arg_0: &SynchronizeEvent) -> 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 SynchronizeEvent[src]
fn cmp(&self, __arg_0: &SynchronizeEvent) -> 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 SynchronizeEvent[src]
fn eq(&self, __arg_0: &SynchronizeEvent) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &SynchronizeEvent) -> bool[src]
This method tests for !=.
impl Eq for SynchronizeEvent[src]
impl Hash for SynchronizeEvent[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 SynchronizeEvent[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl GenericEvent for SynchronizeEvent[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 SynchronizeEvent> for &'a InputEvent[src]
fn from(event: &'a SynchronizeEvent) -> Self[src]
Performs the conversion.
impl<'a> From<&'a SynchronizeEvent> for InputEvent[src]
fn from(event: &'a SynchronizeEvent) -> Self[src]
Performs the conversion.
impl From<SynchronizeEvent> for InputEvent[src]
fn from(event: SynchronizeEvent) -> Self[src]
Performs the conversion.
impl AsRef<InputEvent> for SynchronizeEvent[src]
fn as_ref(&self) -> &InputEvent[src]
Performs the conversion.
impl AsRef<input_event> for SynchronizeEvent[src]
fn as_ref(&self) -> &input_event[src]
Performs the conversion.
impl From<SynchronizeEvent> for Event[src]
fn from(event: SynchronizeEvent) -> Self[src]
Performs the conversion.
impl<'a> From<&'a SynchronizeEvent> for EventRef<'a>[src]
fn from(event: &'a SynchronizeEvent) -> Self[src]
Performs the conversion.
impl<'a> From<&'a mut SynchronizeEvent> for EventMut<'a>[src]
fn from(event: &'a mut SynchronizeEvent) -> Self[src]
Performs the conversion.