pub enum LogFilter {
All,
Log,
Warn,
Error,
}Expand description
Filter level for the vConsole panel log entry display.
Each variant corresponds to a filter button in the vConsole drawer, controlling which log levels are visible in the panel body.
Variants§
All
Show all log levels.
Log
Show only informational messages (LogLevel::Log).
Warn
Show only warning messages (LogLevel::Warn).
Error
Show only error messages (LogLevel::Error).
Trait Implementations§
impl Copy for LogFilter
Source§impl Display for LogFilter
Implements the Display trait for LogFilter to render filter button labels.
impl Display for LogFilter
Implements the Display trait for LogFilter to render filter button labels.
impl StructuralPartialEq for LogFilter
Auto Trait Implementations§
impl Freeze for LogFilter
impl RefUnwindSafe for LogFilter
impl Send for LogFilter
impl Sync for LogFilter
impl Unpin for LogFilter
impl UnsafeUnpin for LogFilter
impl UnwindSafe for LogFilter
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