pub struct TableFormat {
pub border: Option<i32>,
pub cell_spacing: Option<i32>,
pub cell_padding: Option<i32>,
pub width: Option<i32>,
pub alignment: Option<Alignment>,
}Expand description
Table-level formatting.
Fields§
§border: Option<i32>§cell_spacing: Option<i32>§cell_padding: Option<i32>§width: Option<i32>§alignment: Option<Alignment>Trait Implementations§
Source§impl Clone for TableFormat
impl Clone for TableFormat
Source§fn clone(&self) -> TableFormat
fn clone(&self) -> TableFormat
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 TableFormat
impl Debug for TableFormat
Source§impl Default for TableFormat
impl Default for TableFormat
Source§fn default() -> TableFormat
fn default() -> TableFormat
Returns the “default value” for a type. Read more
Source§impl PartialEq for TableFormat
impl PartialEq for TableFormat
impl Eq for TableFormat
impl StructuralPartialEq for TableFormat
Auto Trait Implementations§
impl Freeze for TableFormat
impl RefUnwindSafe for TableFormat
impl Send for TableFormat
impl Sync for TableFormat
impl Unpin for TableFormat
impl UnsafeUnpin for TableFormat
impl UnwindSafe for TableFormat
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