#[repr(C)]pub struct lv_layer_t {
pub draw_buf: *mut lv_draw_buf_t,
pub buf_area: lv_area_t,
pub color_format: u32,
pub _clip_area: lv_area_t,
pub phy_clip_area: lv_area_t,
pub draw_task_head: *mut lv_draw_task_t,
pub parent: *mut lv_layer_t,
pub next: *mut lv_layer_t,
pub all_tasks_added: bool,
pub user_data: *mut c_void,
}
Fields§
§draw_buf: *mut lv_draw_buf_t
§buf_area: lv_area_t
§color_format: u32
§_clip_area: lv_area_t
§phy_clip_area: lv_area_t
§draw_task_head: *mut lv_draw_task_t
§parent: *mut lv_layer_t
§next: *mut lv_layer_t
§all_tasks_added: bool
§user_data: *mut c_void
Trait Implementations§
Source§impl Clone for lv_layer_t
impl Clone for lv_layer_t
Source§fn clone(&self) -> lv_layer_t
fn clone(&self) -> lv_layer_t
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for lv_layer_t
impl Debug for lv_layer_t
Source§impl Default for lv_layer_t
impl Default for lv_layer_t
Source§fn default() -> lv_layer_t
fn default() -> lv_layer_t
Returns the “default value” for a type. Read more
impl Copy for lv_layer_t
Auto Trait Implementations§
impl Freeze for lv_layer_t
impl RefUnwindSafe for lv_layer_t
impl !Send for lv_layer_t
impl !Sync for lv_layer_t
impl Unpin for lv_layer_t
impl UnwindSafe for lv_layer_t
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more