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 opt_formatter(self, formatter: Option<Box<dyn LogFormatter>>) -> Self
pub fn formatter(self, formatter: Box<dyn LogFormatter>) -> Self
pub fn opt_style(self, style: Option<Style>) -> Self
pub fn opt_style_error(self, style: Option<Style>) -> Self
pub fn opt_style_warn(self, style: Option<Style>) -> Self
pub fn opt_style_info(self, style: Option<Style>) -> Self
pub fn opt_style_trace(self, style: Option<Style>) -> Self
pub fn opt_style_debug(self, style: Option<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 opt_output_separator(self, opt_sep: Option<char>) -> Self
Sourcepub fn output_separator(self, sep: char) -> Self
pub fn output_separator(self, sep: char) -> Self
Separator character between field. Default is ‘:’
pub fn opt_output_timestamp(self, opt_fmt: Option<Option<String>>) -> Self
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
pub fn opt_output_level( self, opt_fmt: Option<Option<TuiLoggerLevelOutput>>, ) -> Self
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
pub fn opt_output_target(self, opt_enabled: Option<bool>) -> Self
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
pub fn opt_output_file(self, opt_enabled: Option<bool>) -> Self
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
pub fn opt_output_line(self, opt_enabled: Option<bool>) -> Self
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 inner_state(self, state: Arc<Mutex<TuiWidgetInnerState>>) -> Self
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
Auto Trait Implementations§
impl<'b> Freeze for TuiLoggerWidget<'b>
impl<'b> !RefUnwindSafe for TuiLoggerWidget<'b>
impl<'b> Send for TuiLoggerWidget<'b>
impl<'b> Sync for TuiLoggerWidget<'b>
impl<'b> Unpin for TuiLoggerWidget<'b>
impl<'b> !UnwindSafe for TuiLoggerWidget<'b>
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