pub struct LoggingSection {
pub level: String,
}Expand description
Logging configuration section.
Fields§
§level: StringLog level (error, warn, info, debug, trace).
Trait Implementations§
Source§impl Clone for LoggingSection
impl Clone for LoggingSection
Source§fn clone(&self) -> LoggingSection
fn clone(&self) -> LoggingSection
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 LoggingSection
impl Debug for LoggingSection
Source§impl Default for LoggingSection
impl Default for LoggingSection
Source§impl<'de> Deserialize<'de> for LoggingSectionwhere
LoggingSection: Default,
impl<'de> Deserialize<'de> for LoggingSectionwhere
LoggingSection: Default,
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
Auto Trait Implementations§
impl Freeze for LoggingSection
impl RefUnwindSafe for LoggingSection
impl Send for LoggingSection
impl Sync for LoggingSection
impl Unpin for LoggingSection
impl UnsafeUnpin for LoggingSection
impl UnwindSafe for LoggingSection
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