pub enum FilterLevel {
Off = 0,
Debug = 1,
Info = 2,
Warn = 4,
Error = 8,
Trace = 16,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for FilterLevel
impl Clone for FilterLevel
Source§fn clone(&self) -> FilterLevel
fn clone(&self) -> FilterLevel
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl From<Level> for FilterLevel
impl From<Level> for FilterLevel
Source§fn from(level: Level) -> FilterLevel
fn from(level: Level) -> FilterLevel
Converts to this type from the input type.
Source§impl From<LevelFilter> for FilterLevel
impl From<LevelFilter> for FilterLevel
Source§fn from(level: LevelFilter) -> FilterLevel
fn from(level: LevelFilter) -> FilterLevel
Converts to this type from the input type.
impl Copy for FilterLevel
Auto Trait Implementations§
impl Freeze for FilterLevel
impl RefUnwindSafe for FilterLevel
impl Send for FilterLevel
impl Sync for FilterLevel
impl Unpin for FilterLevel
impl UnwindSafe for FilterLevel
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