Struct tui_logger::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 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 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 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>,

§

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>,

§

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.