#[repr(C)]pub struct lv_table_cell_t {
pub ctrl: lv_table_cell_ctrl_t,
pub user_data: *mut c_void,
pub txt: [c_char; 1],
}Expand description
Cell data
Fields§
§ctrl: lv_table_cell_ctrl_t§user_data: *mut c_void< Custom user data
txt: [c_char; 1]< Variable length array
Trait Implementations§
Source§impl Clone for lv_table_cell_t
impl Clone for lv_table_cell_t
Source§fn clone(&self) -> lv_table_cell_t
fn clone(&self) -> lv_table_cell_t
Returns a duplicate 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_table_cell_t
impl Debug for lv_table_cell_t
impl Copy for lv_table_cell_t
Auto Trait Implementations§
impl Freeze for lv_table_cell_t
impl RefUnwindSafe for lv_table_cell_t
impl !Send for lv_table_cell_t
impl !Sync for lv_table_cell_t
impl Unpin for lv_table_cell_t
impl UnwindSafe for lv_table_cell_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