tui_logger::widget::standard

Struct TuiLoggerWidget

Source
pub struct TuiLoggerWidget<'b> { /* private fields */ }

Implementations§

Source§

impl<'b> TuiLoggerWidget<'b>

Source

pub fn block(self, block: Block<'b>) -> Self

Source

pub fn opt_formatter(self, formatter: Option<Box<dyn LogFormatter>>) -> Self

Source

pub fn formatter(self, formatter: Box<dyn LogFormatter>) -> Self

Source

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

Source

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

Source

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

Source

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

Source

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

Source

pub fn opt_style_debug(self, style: Option<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 opt_output_separator(self, opt_sep: Option<char>) -> Self

Source

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

Separator character between field. Default is ‘:’

Source

pub fn opt_output_timestamp(self, opt_fmt: Option<Option<String>>) -> Self

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 opt_output_level( self, opt_fmt: Option<Option<TuiLoggerLevelOutput>>, ) -> Self

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 opt_output_target(self, opt_enabled: Option<bool>) -> Self

Source

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

Enables output of target field of event

Default is true

Source

pub fn opt_output_file(self, opt_enabled: Option<bool>) -> Self

Source

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

Enables output of file field of event

Default is true

Source

pub fn opt_output_line(self, opt_enabled: Option<bool>) -> Self

Source

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

Enables output of line field of event

Default is true

Source

pub fn inner_state(self, state: Arc<Mutex<TuiWidgetInnerState>>) -> Self

Source

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

Trait Implementations§

Source§

impl<'b> Default for TuiLoggerWidget<'b>

Source§

fn default() -> TuiLoggerWidget<'b>

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

impl<'b> Widget for TuiLoggerWidget<'b>

Source§

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

Draws the current state of the widget in the given buffer. That is the only method required to implement a custom widget.

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> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

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

Source§

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

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

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

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> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
Source§

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

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.
Source§

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

Source§

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

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.