pub struct TableFormatSpec {
pub max_rows: Option<usize>,
pub align: Option<FormatAlignment>,
pub precision: Option<u8>,
pub color: Option<FormatColor>,
pub border: bool,
}Expand description
Typed table rendering configuration for interpolation.
Fields§
§max_rows: Option<usize>§align: Option<FormatAlignment>§precision: Option<u8>§color: Option<FormatColor>§border: boolTrait Implementations§
Source§impl Clone for TableFormatSpec
impl Clone for TableFormatSpec
Source§fn clone(&self) -> TableFormatSpec
fn clone(&self) -> TableFormatSpec
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 TableFormatSpec
impl Debug for TableFormatSpec
Source§impl Default for TableFormatSpec
impl Default for TableFormatSpec
Source§impl PartialEq for TableFormatSpec
impl PartialEq for TableFormatSpec
impl Eq for TableFormatSpec
impl StructuralPartialEq for TableFormatSpec
Auto Trait Implementations§
impl Freeze for TableFormatSpec
impl RefUnwindSafe for TableFormatSpec
impl Send for TableFormatSpec
impl Sync for TableFormatSpec
impl Unpin for TableFormatSpec
impl UnsafeUnpin for TableFormatSpec
impl UnwindSafe for TableFormatSpec
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