pub enum TraceValue {
Off,
Messages,
Verbose,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for TraceValue
impl Clone for TraceValue
Source§fn clone(&self) -> TraceValue
fn clone(&self) -> TraceValue
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 TraceValue
impl Debug for TraceValue
Source§impl<'de> Deserialize<'de> for TraceValue
impl<'de> Deserialize<'de> for TraceValue
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 Display for TraceValue
impl Display for TraceValue
Source§impl From<TraceValue> for String
impl From<TraceValue> for String
Source§fn from(e: TraceValue) -> Self
fn from(e: TraceValue) -> Self
Converts to this type from the input type.
Source§impl Hash for TraceValue
impl Hash for TraceValue
Source§impl PartialEq for TraceValue
impl PartialEq for TraceValue
Source§fn eq(&self, other: &TraceValue) -> bool
fn eq(&self, other: &TraceValue) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for TraceValue
impl Serialize for TraceValue
Source§impl TryFrom<String> for TraceValue
impl TryFrom<String> for TraceValue
impl Copy for TraceValue
impl Eq for TraceValue
impl StructuralPartialEq for TraceValue
Auto Trait Implementations§
impl Freeze for TraceValue
impl RefUnwindSafe for TraceValue
impl Send for TraceValue
impl Sync for TraceValue
impl Unpin for TraceValue
impl UnsafeUnpin for TraceValue
impl UnwindSafe for TraceValue
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