#[repr(C)]pub struct _lv_event_t {
pub target: *mut _lv_obj_t,
pub current_target: *mut _lv_obj_t,
pub code: lv_event_code_t,
pub user_data: *mut c_void,
pub param: *mut c_void,
pub prev: *mut _lv_event_t,
pub _bitfield_align_1: [u8; 0],
pub _bitfield_1: __BindgenBitfieldUnit<[u8; 1]>,
pub __bindgen_padding_0: [u8; 3],
}
Fields§
§target: *mut _lv_obj_t
§current_target: *mut _lv_obj_t
§code: lv_event_code_t
§user_data: *mut c_void
§param: *mut c_void
§prev: *mut _lv_event_t
§_bitfield_align_1: [u8; 0]
§_bitfield_1: __BindgenBitfieldUnit<[u8; 1]>
§__bindgen_padding_0: [u8; 3]
Implementations§
Source§impl _lv_event_t
impl _lv_event_t
pub fn deleted(&self) -> u8
pub fn set_deleted(&mut self, val: u8)
pub fn stop_processing(&self) -> u8
pub fn set_stop_processing(&mut self, val: u8)
pub fn stop_bubbling(&self) -> u8
pub fn set_stop_bubbling(&mut self, val: u8)
pub fn new_bitfield_1( deleted: u8, stop_processing: u8, stop_bubbling: u8, ) -> __BindgenBitfieldUnit<[u8; 1]>
Trait Implementations§
Source§impl Clone for _lv_event_t
impl Clone for _lv_event_t
Source§fn clone(&self) -> _lv_event_t
fn clone(&self) -> _lv_event_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 _lv_event_t
impl Debug for _lv_event_t
Source§impl Default for _lv_event_t
impl Default for _lv_event_t
impl Copy for _lv_event_t
Auto Trait Implementations§
impl Freeze for _lv_event_t
impl RefUnwindSafe for _lv_event_t
impl !Send for _lv_event_t
impl !Sync for _lv_event_t
impl Unpin for _lv_event_t
impl UnwindSafe for _lv_event_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