pub enum RealtimeTracingConfig {
Mode(TracingMode),
Config(TracingConfig),
}Expand description
Either the string "auto" or a granular tracing configuration.
Variants§
Mode(TracingMode)
Config(TracingConfig)
Trait Implementations§
Source§impl Clone for RealtimeTracingConfig
impl Clone for RealtimeTracingConfig
Source§fn clone(&self) -> RealtimeTracingConfig
fn clone(&self) -> RealtimeTracingConfig
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 RealtimeTracingConfig
impl Debug for RealtimeTracingConfig
Source§impl<'de> Deserialize<'de> for RealtimeTracingConfig
impl<'de> Deserialize<'de> for RealtimeTracingConfig
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 RealtimeTracingConfig
impl RefUnwindSafe for RealtimeTracingConfig
impl Send for RealtimeTracingConfig
impl Sync for RealtimeTracingConfig
impl Unpin for RealtimeTracingConfig
impl UnsafeUnpin for RealtimeTracingConfig
impl UnwindSafe for RealtimeTracingConfig
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