pub enum RealtimeSessionTracing {
Auto,
_1(RealtimeSessionTracing1),
}
Expand description
Configuration options for tracing. Set to null to disable tracing. Once tracing is enabled for a session, the configuration cannot be modified.
auto
will create a trace for the session with default values for the
workflow name, group id, and metadata.
Variants§
Trait Implementations§
Source§impl Clone for RealtimeSessionTracing
impl Clone for RealtimeSessionTracing
Source§fn clone(&self) -> RealtimeSessionTracing
fn clone(&self) -> RealtimeSessionTracing
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for RealtimeSessionTracing
impl Debug for RealtimeSessionTracing
Source§impl<'de> Deserialize<'de> for RealtimeSessionTracing
impl<'de> Deserialize<'de> for RealtimeSessionTracing
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 RealtimeSessionTracing
impl PartialEq for RealtimeSessionTracing
Source§fn eq(&self, other: &RealtimeSessionTracing) -> bool
fn eq(&self, other: &RealtimeSessionTracing) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl Serialize for RealtimeSessionTracing
impl Serialize for RealtimeSessionTracing
impl StructuralPartialEq for RealtimeSessionTracing
Auto Trait Implementations§
impl Freeze for RealtimeSessionTracing
impl RefUnwindSafe for RealtimeSessionTracing
impl Send for RealtimeSessionTracing
impl Sync for RealtimeSessionTracing
impl Unpin for RealtimeSessionTracing
impl UnwindSafe for RealtimeSessionTracing
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