pub enum SyslogSeverity {
Emergency = 0,
Alert = 1,
Critical = 2,
Error = 3,
Warning = 4,
Notice = 5,
Informational = 6,
Debug = 7,
}Expand description
Syslog severity levels
Variants§
Emergency = 0
Emergency
Alert = 1
Alert
Critical = 2
Critical
Error = 3
Error
Warning = 4
Warning
Notice = 5
Notice
Informational = 6
Informational
Debug = 7
Debug
Trait Implementations§
Source§impl Clone for SyslogSeverity
impl Clone for SyslogSeverity
Source§fn clone(&self) -> SyslogSeverity
fn clone(&self) -> SyslogSeverity
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 Debug for SyslogSeverity
impl Debug for SyslogSeverity
impl Copy for SyslogSeverity
Auto Trait Implementations§
impl Freeze for SyslogSeverity
impl RefUnwindSafe for SyslogSeverity
impl Send for SyslogSeverity
impl Sync for SyslogSeverity
impl Unpin for SyslogSeverity
impl UnsafeUnpin for SyslogSeverity
impl UnwindSafe for SyslogSeverity
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