#[repr(C)]pub struct Input_data_type {
pub Continue: bool,
pub Point: Point_type,
pub State: State_type,
pub Key: Key_type,
}
Fields§
§Continue: bool
§Point: Point_type
§State: State_type
§Key: Key_type
Implementations§
Source§impl Input_data_type
impl Input_data_type
pub const fn New( Point: Point_type, State: State_type, Key: Key_type, Continue: bool, ) -> Self
pub const fn Get_continue(&self) -> bool
pub const fn Get_point(&self) -> &Point_type
pub const fn Get_touch(&self) -> &State_type
pub const fn Get_key(&self) -> Key_type
pub const fn Set_continue(&mut self, Continue: bool)
pub fn Set_point(&mut self, Point: Point_type)
pub fn Set_state(&mut self, Touch: State_type)
pub fn Set_key(&mut self, Key: Key_type)
pub fn Set(&mut self, Point: Point_type, Touch: State_type)
Trait Implementations§
Source§impl AsMut<[u8]> for Input_data_type
impl AsMut<[u8]> for Input_data_type
Source§impl Clone for Input_data_type
impl Clone for Input_data_type
Source§fn clone(&self) -> Input_data_type
fn clone(&self) -> Input_data_type
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_data_type
impl Debug for Input_data_type
Source§impl Default for Input_data_type
impl Default for Input_data_type
Source§impl From<Input_data_type> for lv_indev_data_t
impl From<Input_data_type> for lv_indev_data_t
Source§fn from(Value: Input_data_type) -> lv_indev_data_t
fn from(Value: Input_data_type) -> lv_indev_data_t
Converts to this type from the input type.
Source§impl PartialEq for Input_data_type
impl PartialEq for Input_data_type
Source§impl TryFrom<&mut [u8]> for &mut Input_data_type
impl TryFrom<&mut [u8]> for &mut Input_data_type
impl Copy for Input_data_type
impl Eq for Input_data_type
impl StructuralPartialEq for Input_data_type
Auto Trait Implementations§
impl Freeze for Input_data_type
impl RefUnwindSafe for Input_data_type
impl Send for Input_data_type
impl Sync for Input_data_type
impl Unpin for Input_data_type
impl UnwindSafe for Input_data_type
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