#[repr(C)]pub struct uiTableParams {
pub Model: *mut uiTableModel,
pub RowBackgroundColorModelColumn: c_int,
}
Fields§
§Model: *mut uiTableModel
Model holding the data to be displayed. This can NOT be NULL
.
RowBackgroundColorModelColumn: c_int
uiTableModel column that defines background color for each row,
#uiTableValueTypeColor Background color, NULL
to use the default
background color for that row.
-1
to use the default background color for all rows.
Trait Implementations§
Source§impl Clone for uiTableParams
impl Clone for uiTableParams
Source§fn clone(&self) -> uiTableParams
fn clone(&self) -> uiTableParams
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 uiTableParams
impl Debug for uiTableParams
impl Copy for uiTableParams
Auto Trait Implementations§
impl Freeze for uiTableParams
impl RefUnwindSafe for uiTableParams
impl !Send for uiTableParams
impl !Sync for uiTableParams
impl Unpin for uiTableParams
impl UnwindSafe for uiTableParams
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