pub struct Trace {Show 14 fields
pub trace_id: Option<String>,
pub session_id: String,
pub started_at: Option<String>,
pub ended_at: Option<String>,
pub event_count: u64,
pub ok_count: Option<u64>,
pub warn_count: Option<u64>,
pub error_count: Option<u64>,
pub agent_id: Option<String>,
pub owner_user_id: Option<String>,
pub owner_email: Option<String>,
pub agent_name: Option<String>,
pub agent_session_id: Option<String>,
pub agent_session_name: Option<String>,
}Fields§
§trace_id: Option<String>§session_id: String§started_at: Option<String>§ended_at: Option<String>§event_count: u64§ok_count: Option<u64>§warn_count: Option<u64>§error_count: Option<u64>§agent_id: Option<String>§owner_user_id: Option<String>§owner_email: Option<String>§agent_name: Option<String>§agent_session_id: Option<String>§agent_session_name: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Trace
impl<'de> Deserialize<'de> for Trace
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<Trace, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<Trace, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for Trace
impl Serialize for Trace
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for Trace
impl RefUnwindSafe for Trace
impl Send for Trace
impl Sync for Trace
impl Unpin for Trace
impl UnsafeUnpin for Trace
impl UnwindSafe for Trace
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