pub struct TableFormatter { /* private fields */ }Expand description
Table formatter for terminal output
Implementations§
Trait Implementations§
Source§impl Clone for TableFormatter
impl Clone for TableFormatter
Source§fn clone(&self) -> TableFormatter
fn clone(&self) -> TableFormatter
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 TableFormatter
impl Debug for TableFormatter
Source§impl Default for TableFormatter
impl Default for TableFormatter
Source§fn default() -> TableFormatter
fn default() -> TableFormatter
Returns the “default value” for a type. Read more
Source§impl Formatter for TableFormatter
impl Formatter for TableFormatter
Source§fn format<W: Write>(&self, entries: &[Entry], writer: &mut W) -> Result<()>
fn format<W: Write>(&self, entries: &[Entry], writer: &mut W) -> Result<()>
Format entries and write to output
Source§fn format_one<W: Write>(&self, entry: &Entry, writer: &mut W) -> Result<()>
fn format_one<W: Write>(&self, entry: &Entry, writer: &mut W) -> Result<()>
Format a single entry for streaming output
Source§fn config(&self) -> &FormatterConfig
fn config(&self) -> &FormatterConfig
Get the configuration for this formatter
Source§fn set_config(&mut self, config: FormatterConfig)
fn set_config(&mut self, config: FormatterConfig)
Set configuration for this formatter
Auto Trait Implementations§
impl Freeze for TableFormatter
impl RefUnwindSafe for TableFormatter
impl Send for TableFormatter
impl Sync for TableFormatter
impl Unpin for TableFormatter
impl UnsafeUnpin for TableFormatter
impl UnwindSafe for TableFormatter
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