pub struct TableOpts {Show 17 fields
pub rows: i32,
pub cols: i32,
pub editable: bool,
pub cell_color: Color,
pub cell_font: Font,
pub cell_font_color: Color,
pub cell_font_size: i32,
pub cell_selection_color: Color,
pub cell_align: Align,
pub cell_border_color: Color,
pub cell_padding: i32,
pub header_font: Font,
pub header_frame: FrameType,
pub header_color: Color,
pub header_font_color: Color,
pub header_font_size: i32,
pub header_align: Align,
}
Expand description
Contains the parameters for our table, including rows, columns and other styling params
Fields§
§rows: i32
§cols: i32
§editable: bool
§cell_color: Color
§cell_font: Font
§cell_font_color: Color
§cell_font_size: i32
§cell_selection_color: Color
§cell_align: Align
§cell_border_color: Color
§cell_padding: i32
§header_font: Font
§header_frame: FrameType
§header_color: Color
§header_font_color: Color
§header_font_size: i32
§header_align: Align
Trait Implementations§
impl Copy for TableOpts
Auto Trait Implementations§
impl Freeze for TableOpts
impl RefUnwindSafe for TableOpts
impl Send for TableOpts
impl Sync for TableOpts
impl Unpin for TableOpts
impl UnwindSafe for TableOpts
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