Struct linux_input_sys::input_event
source · #[repr(C)]pub struct input_event {
pub timestamp_fields: [u64; 2],
pub type_: u16,
pub code: u16,
pub value: i32,
}
Fields§
§timestamp_fields: [u64; 2]
§type_: u16
§code: u16
§value: i32
Implementations§
source§impl input_event
impl input_event
pub fn from_virtio_input_event(other: &virtio_input_event) -> input_event
Trait Implementations§
source§impl AsBytes for input_eventwhere
[u64; 2]: AsBytes,
u16: AsBytes,
i32: AsBytes,
HasPadding<input_event, { _ }>: ShouldBe<false>,
impl AsBytes for input_eventwhere
[u64; 2]: AsBytes,
u16: AsBytes,
i32: AsBytes,
HasPadding<input_event, { _ }>: ShouldBe<false>,
§fn as_bytes_mut(&mut self) -> &mut [u8] ⓘwhere
Self: FromBytes,
fn as_bytes_mut(&mut self) -> &mut [u8] ⓘwhere
Self: FromBytes,
Gets the bytes of this value mutably. Read more
§fn write_to_prefix(&self, bytes: &mut [u8]) -> Option<()>
fn write_to_prefix(&self, bytes: &mut [u8]) -> Option<()>
source§impl Clone for input_event
impl Clone for input_event
source§fn clone(&self) -> input_event
fn clone(&self) -> input_event
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for input_event
impl Debug for input_event
source§impl Default for input_event
impl Default for input_event
source§fn default() -> input_event
fn default() -> input_event
Returns the “default value” for a type. Read more
source§impl FromBytes for input_event
impl FromBytes for input_event
§fn slice_from_prefix(bytes: &[u8], count: usize) -> Option<(&[Self], &[u8])>where
Self: Sized,
fn slice_from_prefix(bytes: &[u8], count: usize) -> Option<(&[Self], &[u8])>where
Self: Sized,
Interprets the prefix of the given
bytes
as a &[Self]
with length
equal to count
without copying. Read more§fn slice_from_suffix(bytes: &[u8], count: usize) -> Option<(&[u8], &[Self])>where
Self: Sized,
fn slice_from_suffix(bytes: &[u8], count: usize) -> Option<(&[u8], &[Self])>where
Self: Sized,
Interprets the suffix of the given
bytes
as a &[Self]
with length
equal to count
without copying. Read more§fn mut_slice_from_prefix(
bytes: &mut [u8],
count: usize
) -> Option<(&mut [Self], &mut [u8])>where
Self: Sized + AsBytes,
fn mut_slice_from_prefix(
bytes: &mut [u8],
count: usize
) -> Option<(&mut [Self], &mut [u8])>where
Self: Sized + AsBytes,
Interprets the prefix of the given
bytes
as a &mut [Self]
with length
equal to count
without copying. Read more§fn mut_slice_from_suffix(
bytes: &mut [u8],
count: usize
) -> Option<(&mut [u8], &mut [Self])>where
Self: Sized + AsBytes,
fn mut_slice_from_suffix(
bytes: &mut [u8],
count: usize
) -> Option<(&mut [u8], &mut [Self])>where
Self: Sized + AsBytes,
Interprets the suffix of the given
bytes
as a &mut [Self]
with length
equal to count
without copying. Read more§fn read_from_prefix(bytes: &[u8]) -> Option<Self>where
Self: Sized,
fn read_from_prefix(bytes: &[u8]) -> Option<Self>where
Self: Sized,
source§impl FromZeroes for input_event
impl FromZeroes for input_event
source§impl InputEventDecoder for input_event
impl InputEventDecoder for input_event
source§impl PartialEq for input_event
impl PartialEq for input_event
source§fn eq(&self, other: &input_event) -> bool
fn eq(&self, other: &input_event) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for input_event
impl Eq for input_event
impl StructuralPartialEq for input_event
Auto Trait Implementations§
impl RefUnwindSafe for input_event
impl Send for input_event
impl Sync for input_event
impl Unpin for input_event
impl UnwindSafe for input_event
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