Struct lvgl_sys::lv_label_ext_t[][src]

#[repr(C)]pub struct lv_label_ext_t {
    pub text: *mut c_char,
    pub dot: lv_label_ext_t__bindgen_ty_1,
    pub dot_end: u32,
    pub anim_speed: u16,
    pub offset: lv_point_t,
    pub _bitfield_1: __BindgenBitfieldUnit<[u8; 2], u8>,
    pub __bindgen_padding_0: u32,
}

Fields

text: *mut c_chardot: lv_label_ext_t__bindgen_ty_1dot_end: u32anim_speed: u16offset: lv_point_t_bitfield_1: __BindgenBitfieldUnit<[u8; 2], u8>__bindgen_padding_0: u32

Implementations

impl lv_label_ext_t[src]

pub fn long_mode(&self) -> lv_label_long_mode_t[src]

pub fn set_long_mode(&mut self, val: lv_label_long_mode_t)[src]

pub fn static_txt(&self) -> u8[src]

pub fn set_static_txt(&mut self, val: u8)[src]

pub fn align(&self) -> u8[src]

pub fn set_align(&mut self, val: u8)[src]

pub fn recolor(&self) -> u8[src]

pub fn set_recolor(&mut self, val: u8)[src]

pub fn expand(&self) -> u8[src]

pub fn set_expand(&mut self, val: u8)[src]

pub fn dot_tmp_alloc(&self) -> u8[src]

pub fn set_dot_tmp_alloc(&mut self, val: u8)[src]

pub fn new_bitfield_1(
    long_mode: lv_label_long_mode_t,
    static_txt: u8,
    align: u8,
    recolor: u8,
    expand: u8,
    dot_tmp_alloc: u8
) -> __BindgenBitfieldUnit<[u8; 2], u8>
[src]

Trait Implementations

impl Clone for lv_label_ext_t[src]

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