Struct tui_logger::TuiLoggerWidget
source · pub struct TuiLoggerWidget<'b> { /* private fields */ }Implementations§
source§impl<'b> TuiLoggerWidget<'b>
impl<'b> TuiLoggerWidget<'b>
pub fn block(self, block: Block<'b>) -> 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
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
pub fn state(self, state: &TuiWidgetState) -> Self
Trait Implementations§
source§impl<'b> Default for TuiLoggerWidget<'b>
impl<'b> Default for TuiLoggerWidget<'b>
source§fn default() -> TuiLoggerWidget<'b>
fn default() -> TuiLoggerWidget<'b>
Returns the “default value” for a type. Read more