#[repr(C)]pub struct _lv_timer_t {
pub period: u32,
pub last_run: u32,
pub timer_cb: lv_timer_cb_t,
pub user_data: *mut c_void,
pub repeat_count: i32,
pub _bitfield_align_1: [u8; 0],
pub _bitfield_1: __BindgenBitfieldUnit<[u8; 1]>,
pub __bindgen_padding_0: [u8; 3],
}
Fields§
§period: u32
§last_run: u32
§timer_cb: lv_timer_cb_t
§user_data: *mut c_void
§repeat_count: i32
§_bitfield_align_1: [u8; 0]
§_bitfield_1: __BindgenBitfieldUnit<[u8; 1]>
§__bindgen_padding_0: [u8; 3]
Implementations§
Source§impl _lv_timer_t
impl _lv_timer_t
pub fn paused(&self) -> u32
pub fn set_paused(&mut self, val: u32)
pub fn new_bitfield_1(paused: u32) -> __BindgenBitfieldUnit<[u8; 1]>
Trait Implementations§
Source§impl Clone for _lv_timer_t
impl Clone for _lv_timer_t
Source§fn clone(&self) -> _lv_timer_t
fn clone(&self) -> _lv_timer_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_timer_t
impl Debug for _lv_timer_t
Source§impl Default for _lv_timer_t
impl Default for _lv_timer_t
impl Copy for _lv_timer_t
Auto Trait Implementations§
impl Freeze for _lv_timer_t
impl RefUnwindSafe for _lv_timer_t
impl !Send for _lv_timer_t
impl !Sync for _lv_timer_t
impl Unpin for _lv_timer_t
impl UnwindSafe for _lv_timer_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