pub struct TuiLoggerInner {
pub hot_depth: usize,
pub events: CircularBuffer<ExtLogRecord>,
pub dump: Option<TuiLoggerFile>,
pub total_events: usize,
pub default: LevelFilter,
pub targets: LevelConfig,
}
Fields§
§hot_depth: usize
§events: CircularBuffer<ExtLogRecord>
§dump: Option<TuiLoggerFile>
§total_events: usize
§default: LevelFilter
§targets: LevelConfig
Auto Trait Implementations§
impl Freeze for TuiLoggerInner
impl RefUnwindSafe for TuiLoggerInner
impl Send for TuiLoggerInner
impl Sync for TuiLoggerInner
impl Unpin for TuiLoggerInner
impl UnwindSafe for TuiLoggerInner
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