Skip to main content

_lv_global_t

Struct _lv_global_t 

Source
#[repr(C)]
pub struct _lv_global_t {
Show 41 fields pub inited: bool, pub deinit_in_progress: bool, pub disp_ll: lv_ll_t, pub disp_refresh: *mut _lv_display_t, pub disp_default: *mut _lv_display_t, pub style_trans_ll: lv_ll_t, pub style_refresh: bool, pub style_custom_table_size: u32, pub style_last_custom_prop_id: u32, pub style_custom_prop_flag_lookup_table: *mut u8, pub group_ll: lv_ll_t, pub group_default: *mut _lv_group_t, pub indev_ll: lv_ll_t, pub indev_active: *mut _lv_indev_t, pub indev_obj_active: *mut _lv_obj_t, pub layout_count: u32, pub layout_list: *mut lv_layout_dsc_t, pub layout_update_mutex: bool, pub memory_zero: u32, pub math_rand_seed: u32, pub event_header: *mut _lv_event_t, pub event_last_register_id: u32, pub timer_state: lv_timer_state_t, pub anim_state: lv_anim_state_t, pub tick_state: lv_tick_state_t, pub draw_buf_handlers: _lv_draw_buf_handlers_t, pub font_draw_buf_handlers: _lv_draw_buf_handlers_t, pub image_cache_draw_buf_handlers: _lv_draw_buf_handlers_t, pub img_decoder_ll: lv_ll_t, pub img_cache: *mut _lv_cache_t, pub img_header_cache: *mut _lv_cache_t, pub draw_info: lv_draw_global_info_t, pub draw_sw_blend_handler_ll: lv_ll_t, pub sw_circle_cache: [lv_draw_sw_mask_radius_circle_dsc_t; 4], pub theme_simple: *mut c_void, pub theme_default: *mut c_void, pub theme_mono: *mut c_void, pub fsdrv_ll: lv_ll_t, pub objid_array: *mut c_void, pub objid_count: u32, pub user_data: *mut c_void,
}

Fields§

§inited: bool§deinit_in_progress: bool§disp_ll: lv_ll_t§disp_refresh: *mut _lv_display_t§disp_default: *mut _lv_display_t§style_trans_ll: lv_ll_t§style_refresh: bool§style_custom_table_size: u32§style_last_custom_prop_id: u32§style_custom_prop_flag_lookup_table: *mut u8§group_ll: lv_ll_t§group_default: *mut _lv_group_t§indev_ll: lv_ll_t§indev_active: *mut _lv_indev_t§indev_obj_active: *mut _lv_obj_t§layout_count: u32§layout_list: *mut lv_layout_dsc_t§layout_update_mutex: bool§memory_zero: u32§math_rand_seed: u32§event_header: *mut _lv_event_t§event_last_register_id: u32§timer_state: lv_timer_state_t§anim_state: lv_anim_state_t§tick_state: lv_tick_state_t§draw_buf_handlers: _lv_draw_buf_handlers_t§font_draw_buf_handlers: _lv_draw_buf_handlers_t§image_cache_draw_buf_handlers: _lv_draw_buf_handlers_t§img_decoder_ll: lv_ll_t§img_cache: *mut _lv_cache_t§img_header_cache: *mut _lv_cache_t§draw_info: lv_draw_global_info_t§draw_sw_blend_handler_ll: lv_ll_t§sw_circle_cache: [lv_draw_sw_mask_radius_circle_dsc_t; 4]§theme_simple: *mut c_void§theme_default: *mut c_void§theme_mono: *mut c_void§fsdrv_ll: lv_ll_t§objid_array: *mut c_void§objid_count: u32§user_data: *mut c_void

Trait Implementations§

Source§

impl Clone for _lv_global_t

Source§

fn clone(&self) -> _lv_global_t

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for _lv_global_t

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl Default for _lv_global_t

Source§

fn default() -> _lv_global_t

Returns the “default value” for a type. Read more
Source§

impl Copy for _lv_global_t

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.