pub struct TableOptions {
pub overflow: bool,
pub spacing: usize,
pub border: Option<Color>,
}
Fields§
§overflow: bool
Whether the table should be allowed to overflow.
spacing: usize
Horizontal spacing between table cells.
border: Option<Color>
Table border.
Implementations§
Source§impl TableOptions
impl TableOptions
Trait Implementations§
Source§impl Debug for TableOptions
impl Debug for TableOptions
Auto Trait Implementations§
impl Freeze for TableOptions
impl RefUnwindSafe for TableOptions
impl Send for TableOptions
impl Sync for TableOptions
impl Unpin for TableOptions
impl UnwindSafe for TableOptions
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