pub struct TableFormatFinal {Show 14 fields
pub column_formats: Vec<ColumnFormat>,
pub column_delimiter: String,
pub header_separator_delimiter: String,
pub header_separator_char: char,
pub include_header_row: bool,
pub include_header_separator_row: bool,
pub include_summary_row: bool,
pub include_summary_separator_row: bool,
pub render_height: usize,
pub max_render_width: usize,
pub indent: usize,
pub border_font_style: FontStyle,
pub label_font_style: FontStyle,
pub label_justify_left: bool,
}Expand description
finalized TableFormat
Fields§
§column_formats: Vec<ColumnFormat>column formats
column_delimiter: Stringcolumn delimiter
header_separator_delimiter: Stringheader separator delimiter
header_separator_char: charheader separator char
include_header_row: boolinclude header row
include_header_separator_row: boolinclude header separator row
include_summary_row: boolinclude summary row
include_summary_separator_row: boolinclude summary separator row
render_height: usizerender height
max_render_width: usizemax render width
indent: usizeindent
border_font_style: FontStyleborder font style
label_font_style: FontStylelabel font style
label_justify_left: boollabel justify left
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TableFormatFinal
impl RefUnwindSafe for TableFormatFinal
impl Send for TableFormatFinal
impl Sync for TableFormatFinal
impl Unpin for TableFormatFinal
impl UnwindSafe for TableFormatFinal
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