Struct lvgl_sys::lv_theme_t[][src]

#[repr(C)]pub struct lv_theme_t {
    pub apply_xcb: Option<unsafe extern "C" fn(arg1: *mut lv_obj_t, arg2: lv_theme_style_t)>,
    pub color_primary: lv_color_t,
    pub color_secondary: lv_color_t,
    pub font_small: *const lv_font_t,
    pub font_normal: *const lv_font_t,
    pub font_subtitle: *const lv_font_t,
    pub font_title: *const lv_font_t,
    pub flags: u32,
}

Fields

apply_xcb: Option<unsafe extern "C" fn(arg1: *mut lv_obj_t, arg2: lv_theme_style_t)>color_primary: lv_color_tcolor_secondary: lv_color_tfont_small: *const lv_font_tfont_normal: *const lv_font_tfont_subtitle: *const lv_font_tfont_title: *const lv_font_tflags: u32

Trait Implementations

impl Clone for lv_theme_t[src]

impl Copy for lv_theme_t[src]

Auto Trait Implementations

impl !Send for lv_theme_t

impl !Sync for lv_theme_t

impl Unpin for lv_theme_t

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.