pub enum SandboxLogLevel {
Error,
Warn,
Info,
Debug,
Trace,
}Expand description
Runtime log verbosity for sandbox specs.
Variants§
Error
Emit only error logs.
Warn
Emit warning and error logs.
Info
Emit info, warning, and error logs.
Debug
Emit debug and higher-severity logs.
Trace
Emit trace and higher-severity logs.
Implementations§
Trait Implementations§
Source§impl Clone for SandboxLogLevel
impl Clone for SandboxLogLevel
Source§fn clone(&self) -> SandboxLogLevel
fn clone(&self) -> SandboxLogLevel
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 moreimpl Copy for SandboxLogLevel
Source§impl Debug for SandboxLogLevel
impl Debug for SandboxLogLevel
Source§impl<'de> Deserialize<'de> for SandboxLogLevel
impl<'de> Deserialize<'de> for SandboxLogLevel
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
impl Eq for SandboxLogLevel
Source§impl FromStr for SandboxLogLevel
impl FromStr for SandboxLogLevel
Source§impl PartialEq for SandboxLogLevel
impl PartialEq for SandboxLogLevel
Source§fn eq(&self, other: &SandboxLogLevel) -> bool
fn eq(&self, other: &SandboxLogLevel) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SandboxLogLevel
impl Serialize for SandboxLogLevel
impl StructuralPartialEq for SandboxLogLevel
Auto Trait Implementations§
impl Freeze for SandboxLogLevel
impl RefUnwindSafe for SandboxLogLevel
impl Send for SandboxLogLevel
impl Sync for SandboxLogLevel
impl Unpin for SandboxLogLevel
impl UnsafeUnpin for SandboxLogLevel
impl UnwindSafe for SandboxLogLevel
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