pub struct TableTheme {
pub default_table_flags: Option<TableFlags>,
pub default_row_flags: Option<TableRowFlags>,
}Expand description
Table-related theme defaults (flags/behavior).
Fields§
§default_table_flags: Option<TableFlags>Default flags for tables created via Ui::table / Ui::begin_table.
default_row_flags: Option<TableRowFlags>Default row flags for data tables.
Trait Implementations§
Source§impl Clone for TableTheme
impl Clone for TableTheme
Source§fn clone(&self) -> TableTheme
fn clone(&self) -> TableTheme
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 TableTheme
impl Debug for TableTheme
Source§impl Default for TableTheme
impl Default for TableTheme
Source§fn default() -> TableTheme
fn default() -> TableTheme
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for TableTheme
impl RefUnwindSafe for TableTheme
impl Send for TableTheme
impl Sync for TableTheme
impl Unpin for TableTheme
impl UnwindSafe for TableTheme
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