Struct lvgl_sys::lv_draw_label_dsc_t[][src]

#[repr(C)]pub struct lv_draw_label_dsc_t {
    pub color: lv_color_t,
    pub sel_color: lv_color_t,
    pub font: *const lv_font_t,
    pub opa: lv_opa_t,
    pub line_space: lv_style_int_t,
    pub letter_space: lv_style_int_t,
    pub sel_start: u32,
    pub sel_end: u32,
    pub ofs_x: lv_coord_t,
    pub ofs_y: lv_coord_t,
    pub bidi_dir: lv_bidi_dir_t,
    pub flag: lv_txt_flag_t,
    pub decor: lv_text_decor_t,
    pub blend_mode: lv_blend_mode_t,
}

Fields

color: lv_color_tsel_color: lv_color_tfont: *const lv_font_topa: lv_opa_tline_space: lv_style_int_tletter_space: lv_style_int_tsel_start: u32sel_end: u32ofs_x: lv_coord_tofs_y: lv_coord_tbidi_dir: lv_bidi_dir_tflag: lv_txt_flag_tdecor: lv_text_decor_tblend_mode: lv_blend_mode_t

Trait Implementations

impl Clone for lv_draw_label_dsc_t[src]

impl Copy for lv_draw_label_dsc_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.