Struct rat_widget::table::TableStyle
source · pub struct TableStyle {Show 15 fields
pub style: Style,
pub header_style: Option<Style>,
pub footer_style: Option<Style>,
pub select_row_style: Option<Style>,
pub select_column_style: Option<Style>,
pub select_cell_style: Option<Style>,
pub select_header_style: Option<Style>,
pub select_footer_style: Option<Style>,
pub show_row_focus: bool,
pub show_column_focus: bool,
pub show_cell_focus: bool,
pub show_header_focus: bool,
pub show_footer_focus: bool,
pub focus_style: Option<Style>,
pub non_exhaustive: NonExhaustive,
}Expand description
Combined style.
Fields§
§style: Style§header_style: Option<Style>§select_row_style: Option<Style>§select_column_style: Option<Style>§select_cell_style: Option<Style>§select_header_style: Option<Style>§show_row_focus: bool§show_column_focus: bool§show_cell_focus: bool§show_header_focus: bool§focus_style: Option<Style>§non_exhaustive: NonExhaustiveTrait Implementations§
source§impl Debug for TableStyle
impl Debug for TableStyle
source§impl Default for TableStyle
impl Default for TableStyle
source§fn default() -> TableStyle
fn default() -> TableStyle
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for TableStyle
impl RefUnwindSafe for TableStyle
impl Send for TableStyle
impl Sync for TableStyle
impl Unpin for TableStyle
impl UnwindSafe for TableStyle
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
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more