pub enum LoggingLevel {
Debug,
Info,
Notice,
Warning,
Error,
Critical,
Alert,
Emergency,
}
Expand description
Logging level enumeration (2025-03-26)
Variantsยง
Trait Implementationsยง
Sourceยงimpl Clone for LoggingLevel
impl Clone for LoggingLevel
Sourceยงfn clone(&self) -> LoggingLevel
fn clone(&self) -> LoggingLevel
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 LoggingLevel
impl Debug for LoggingLevel
Sourceยงimpl<'de> Deserialize<'de> for LoggingLevel
impl<'de> Deserialize<'de> for LoggingLevel
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 LoggingLevel
impl PartialEq for LoggingLevel
Sourceยงimpl Serialize for LoggingLevel
impl Serialize for LoggingLevel
impl StructuralPartialEq for LoggingLevel
Auto Trait Implementationsยง
impl Freeze for LoggingLevel
impl RefUnwindSafe for LoggingLevel
impl Send for LoggingLevel
impl Sync for LoggingLevel
impl Unpin for LoggingLevel
impl UnwindSafe for LoggingLevel
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