pub enum LogLevel {
Emerg = 0,
Alert = 1,
Crit = 2,
Err = 3,
Warning = 4,
Notice = 5,
Info = 6,
Debug = 7,
Audit = 8,
}Available on crate feature
nftables only.Expand description
nf_tables log levels Enum - defines an integer enumeration, with values for each entry incrementing by 1, (e.g. 0, 1, 2, 3)
Variants§
Emerg = 0
system is unusable
Alert = 1
action must be taken immediately
Crit = 2
critical conditions
Err = 3
error conditions
Warning = 4
warning conditions
Notice = 5
normal but significant condition
Info = 6
informational
Debug = 7
debug-level messages
Audit = 8
enabling audit logging
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LogLevel
impl RefUnwindSafe for LogLevel
impl Send for LogLevel
impl Sync for LogLevel
impl Unpin for LogLevel
impl UnwindSafe for LogLevel
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