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>

source

pub fn highlight_style(self, style: Style) -> Self

source

pub fn border_style(self, style: Style) -> Self

source

pub fn style(self, style: Style) -> Self

source

pub fn style_error(self, style: Style) -> Self

source

pub fn style_warn(self, style: Style) -> Self

source

pub fn style_info(self, style: Style) -> Self

source

pub fn style_trace(self, style: Style) -> Self

source

pub fn style_debug(self, style: Style) -> Self

source

pub fn style_off(self, style: Style) -> Self

source

pub fn style_hide(self, style: Style) -> Self

source

pub fn style_show(self, style: Style) -> Self

source

pub fn output_separator(self, sep: char) -> Self

Separator character between field. Default is ‘:’

source

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

source

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

source

pub fn output_target(self, enabled: bool) -> Self

Enables output of target field of event

Default is true

source

pub fn output_file(self, enabled: bool) -> Self

Enables output of file field of event

Default is true

source

pub fn output_line(self, enabled: bool) -> Self

Enables output of line field of event

Default is true

source

pub fn title_target<T>(self, title: T) -> Selfwhere T: Into<Spans<'a>>,

source

pub fn title_log<T>(self, title: T) -> Selfwhere T: Into<Spans<'a>>,

source

pub fn state(self, state: &TuiWidgetState) -> Self

Trait Implementations§

source§

impl<'a> Default for TuiLoggerSmartWidget<'a>

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<'a> Widget for TuiLoggerSmartWidget<'a>

source§

fn render(self, area: Rect, buf: &mut Buffer)

Nothing to draw for combo widget

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.