Struct lvgl_sys::_lv_indev_drv_t[][src]

#[repr(C)]pub struct _lv_indev_drv_t {
    pub type_: lv_indev_type_t,
    pub read_cb: Option<unsafe extern "C" fn(indev_drv: *mut _lv_indev_drv_t, data: *mut lv_indev_data_t) -> bool>,
    pub feedback_cb: Option<unsafe extern "C" fn(arg1: *mut _lv_indev_drv_t, arg2: u8)>,
    pub user_data: lv_indev_drv_user_data_t,
    pub disp: *mut _disp_t,
    pub read_task: *mut lv_task_t,
    pub drag_limit: u8,
    pub drag_throw: u8,
    pub gesture_min_velocity: u8,
    pub gesture_limit: u8,
    pub long_press_time: u16,
    pub long_press_rep_time: u16,
}

Fields

type_: lv_indev_type_tread_cb: Option<unsafe extern "C" fn(indev_drv: *mut _lv_indev_drv_t, data: *mut lv_indev_data_t) -> bool>feedback_cb: Option<unsafe extern "C" fn(arg1: *mut _lv_indev_drv_t, arg2: u8)>user_data: lv_indev_drv_user_data_tdisp: *mut _disp_tread_task: *mut lv_task_tdrag_limit: u8drag_throw: u8gesture_min_velocity: u8gesture_limit: u8long_press_time: u16long_press_rep_time: u16

Trait Implementations

impl Clone for _lv_indev_drv_t[src]

impl Copy for _lv_indev_drv_t[src]

impl Debug for _lv_indev_drv_t[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.