#[repr(C)]pub struct lv_timer_state_t {Show 13 fields
pub timer_ll: lv_ll_t,
pub lv_timer_run: bool,
pub idle_last: u8,
pub timer_deleted: bool,
pub timer_created: bool,
pub timer_time_until_next: u32,
pub already_running: bool,
pub periodic_last_tick: u32,
pub busy_time: u32,
pub idle_period_start: u32,
pub run_cnt: u32,
pub resume_cb: lv_timer_handler_resume_cb_t,
pub resume_data: *mut c_void,
}Fields§
§timer_ll: lv_ll_t< Linked list to store the lv_timers
lv_timer_run: bool§idle_last: u8§timer_deleted: bool§timer_created: bool§timer_time_until_next: u32§already_running: bool§periodic_last_tick: u32§busy_time: u32§idle_period_start: u32§run_cnt: u32§resume_cb: lv_timer_handler_resume_cb_t§resume_data: *mut c_voidTrait Implementations§
Source§impl Clone for lv_timer_state_t
impl Clone for lv_timer_state_t
Source§fn clone(&self) -> lv_timer_state_t
fn clone(&self) -> lv_timer_state_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_state_t
impl Debug for lv_timer_state_t
impl Copy for lv_timer_state_t
Auto Trait Implementations§
impl Freeze for lv_timer_state_t
impl RefUnwindSafe for lv_timer_state_t
impl !Send for lv_timer_state_t
impl !Sync for lv_timer_state_t
impl Unpin for lv_timer_state_t
impl UnsafeUnpin for lv_timer_state_t
impl UnwindSafe for lv_timer_state_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