pub struct StatsFormatter { /* private fields */ }Expand description
Statistics summary formatter
Implementations§
Trait Implementations§
Source§impl Clone for StatsFormatter
impl Clone for StatsFormatter
Source§fn clone(&self) -> StatsFormatter
fn clone(&self) -> StatsFormatter
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 StatsFormatter
impl Debug for StatsFormatter
Source§impl Default for StatsFormatter
impl Default for StatsFormatter
Source§fn default() -> StatsFormatter
fn default() -> StatsFormatter
Returns the “default value” for a type. Read more
Source§impl Formatter for StatsFormatter
impl Formatter for StatsFormatter
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 StatsFormatter
impl RefUnwindSafe for StatsFormatter
impl Send for StatsFormatter
impl Sync for StatsFormatter
impl Unpin for StatsFormatter
impl UnsafeUnpin for StatsFormatter
impl UnwindSafe for StatsFormatter
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