Struct rat_widget::table::FTableStyle
source · pub struct FTableStyle {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 FTableStyle
impl Debug for FTableStyle
source§impl Default for FTableStyle
impl Default for FTableStyle
source§fn default() -> FTableStyle
fn default() -> FTableStyle
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for FTableStyle
impl RefUnwindSafe for FTableStyle
impl Send for FTableStyle
impl Sync for FTableStyle
impl Unpin for FTableStyle
impl UnwindSafe for FTableStyle
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