#[repr(C)]pub struct _lv_calendar_t {
pub obj: _lv_obj_t,
pub btnm: *mut _lv_obj_t,
pub today: lv_calendar_date_t,
pub showed_date: lv_calendar_date_t,
pub highlighted_dates: *mut lv_calendar_date_t,
pub highlighted_dates_num: usize,
pub map: [*const i8; 56],
pub use_chinese_calendar: bool,
pub nums: [[i8; 20]; 42],
}Fields§
§obj: _lv_obj_t§btnm: *mut _lv_obj_t§today: lv_calendar_date_t§showed_date: lv_calendar_date_t§highlighted_dates: *mut lv_calendar_date_t§highlighted_dates_num: usize§map: [*const i8; 56]§use_chinese_calendar: bool§nums: [[i8; 20]; 42]Trait Implementations§
Source§impl Clone for _lv_calendar_t
impl Clone for _lv_calendar_t
Source§fn clone(&self) -> _lv_calendar_t
fn clone(&self) -> _lv_calendar_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_calendar_t
impl Debug for _lv_calendar_t
Source§impl Default for _lv_calendar_t
impl Default for _lv_calendar_t
Source§fn default() -> _lv_calendar_t
fn default() -> _lv_calendar_t
Returns the “default value” for a type. Read more
impl Copy for _lv_calendar_t
Auto Trait Implementations§
impl Freeze for _lv_calendar_t
impl RefUnwindSafe for _lv_calendar_t
impl !Send for _lv_calendar_t
impl !Sync for _lv_calendar_t
impl Unpin for _lv_calendar_t
impl UnsafeUnpin for _lv_calendar_t
impl UnwindSafe for _lv_calendar_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