#[repr(C)]pub struct touchpad_report_t {
pub contact: c_uchar,
pub proximity: c_uchar,
pub x: u16,
pub y: u16,
pub x_velocity: c_uchar,
pub y_velocity: c_uchar,
pub dummy: u16,
pub pressed: c_uchar,
pub arrow: c_uchar,
}Fields§
§contact: c_uchar§proximity: c_uchar§x: u16§y: u16§x_velocity: c_uchar§y_velocity: c_uchar§dummy: u16§pressed: c_uchar§arrow: c_ucharTrait Implementations§
Source§impl Clone for touchpad_report_t
impl Clone for touchpad_report_t
Source§fn clone(&self) -> touchpad_report_t
fn clone(&self) -> touchpad_report_t
Returns a duplicate 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 touchpad_report_t
impl Debug for touchpad_report_t
impl Copy for touchpad_report_t
Auto Trait Implementations§
impl Freeze for touchpad_report_t
impl RefUnwindSafe for touchpad_report_t
impl Send for touchpad_report_t
impl Sync for touchpad_report_t
impl Unpin for touchpad_report_t
impl UnwindSafe for touchpad_report_t
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