Struct tui_logger::TuiLoggerSmartWidget
source · pub struct TuiLoggerSmartWidget<'a> { /* private fields */ }Expand description
The Smart Widget combines the TuiLoggerWidget and the TuiLoggerTargetWidget into a nice combo, where the TuiLoggerTargetWidget can be shown/hidden.
In the title the number of logging messages/s in the whole buffer is shown.
Implementations§
source§impl<'a> TuiLoggerSmartWidget<'a>
impl<'a> TuiLoggerSmartWidget<'a>
pub fn highlight_style(self, style: Style) -> Self
pub fn border_style(self, style: Style) -> Self
pub fn style(self, style: Style) -> Self
pub fn style_error(self, style: Style) -> Self
pub fn style_warn(self, style: Style) -> Self
pub fn style_info(self, style: Style) -> Self
pub fn style_trace(self, style: Style) -> Self
pub fn style_debug(self, style: Style) -> Self
pub fn style_off(self, style: Style) -> Self
pub fn style_hide(self, style: Style) -> Self
pub fn style_show(self, style: Style) -> Self
sourcepub fn output_separator(self, sep: char) -> Self
pub fn output_separator(self, sep: char) -> Self
Separator character between field. Default is ‘:’
sourcepub fn output_timestamp(self, fmt: Option<String>) -> Self
pub fn output_timestamp(self, fmt: Option<String>) -> Self
The format string can be defined as described in https://docs.rs/chrono/0.4.19/chrono/format/strftime/index.html
If called with None, timestamp is not included in output.
Default is %H:%M:%S
sourcepub fn output_level(self, level: Option<TuiLoggerLevelOutput>) -> Self
pub fn output_level(self, level: Option<TuiLoggerLevelOutput>) -> Self
Possible values are
- TuiLoggerLevelOutput::Long => DEBUG/TRACE/…
- TuiLoggerLevelOutput::Abbreviated => D/T/…
If called with None, level is not included in output.
Default is Long
sourcepub fn output_target(self, enabled: bool) -> Self
pub fn output_target(self, enabled: bool) -> Self
Enables output of target field of event
Default is true
sourcepub fn output_file(self, enabled: bool) -> Self
pub fn output_file(self, enabled: bool) -> Self
Enables output of file field of event
Default is true
sourcepub fn output_line(self, enabled: bool) -> Self
pub fn output_line(self, enabled: bool) -> Self
Enables output of line field of event
Default is true