pub enum LogLevelIn {
Alert,
Crit,
Debug,
Emerg,
Err,
Info,
Nolog,
Notice,
Warning,
}Expand description
Log level for incoming traffic.
Variants§
Trait Implementations§
Source§impl Clone for LogLevelIn
impl Clone for LogLevelIn
Source§fn clone(&self) -> LogLevelIn
fn clone(&self) -> LogLevelIn
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 LogLevelIn
impl Debug for LogLevelIn
Source§impl<'de> Deserialize<'de> for LogLevelIn
impl<'de> Deserialize<'de> for LogLevelIn
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for LogLevelIn
impl PartialEq for LogLevelIn
Source§fn eq(&self, other: &LogLevelIn) -> bool
fn eq(&self, other: &LogLevelIn) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for LogLevelIn
impl Serialize for LogLevelIn
impl StructuralPartialEq for LogLevelIn
Auto Trait Implementations§
impl Freeze for LogLevelIn
impl RefUnwindSafe for LogLevelIn
impl Send for LogLevelIn
impl Sync for LogLevelIn
impl Unpin for LogLevelIn
impl UnsafeUnpin for LogLevelIn
impl UnwindSafe for LogLevelIn
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