Struct lvgl_sys::lv_calendar_ext_t[][src]

#[repr(C)]pub struct lv_calendar_ext_t {
    pub today: lv_calendar_date_t,
    pub showed_date: lv_calendar_date_t,
    pub highlighted_dates: *mut lv_calendar_date_t,
    pub btn_pressing: i8,
    pub highlighted_dates_num: u16,
    pub pressed_date: lv_calendar_date_t,
    pub day_names: *mut *const c_char,
    pub month_names: *mut *const c_char,
    pub style_header: lv_style_list_t,
    pub style_day_names: lv_style_list_t,
    pub style_date_nums: lv_style_list_t,
}

Fields

today: lv_calendar_date_tshowed_date: lv_calendar_date_thighlighted_dates: *mut lv_calendar_date_tbtn_pressing: i8highlighted_dates_num: u16pressed_date: lv_calendar_date_tday_names: *mut *const c_charmonth_names: *mut *const c_charstyle_header: lv_style_list_tstyle_day_names: lv_style_list_tstyle_date_nums: lv_style_list_t

Trait Implementations

impl Clone for lv_calendar_ext_t[src]

impl Copy for lv_calendar_ext_t[src]

impl Debug for lv_calendar_ext_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.