pub struct TraceEvent {Show 18 fields
pub id: String,
pub created_at: String,
pub session_id: String,
pub agent_id: String,
pub trace_id: Option<String>,
pub api_key_id: Option<String>,
pub event_type: String,
pub status: String,
pub duration_ms: Option<u64>,
pub integration_id: Option<String>,
pub tool_name: Option<String>,
pub error_message: Option<String>,
pub bytes_in: Option<u64>,
pub bytes_out: Option<u64>,
pub request_json: Option<Value>,
pub response_json: Option<Value>,
pub parent_event_id: Option<String>,
pub agent_session_id: Option<String>,
}Fields§
§id: String§created_at: String§session_id: String§agent_id: String§trace_id: Option<String>§api_key_id: Option<String>§event_type: String§status: String§duration_ms: Option<u64>§integration_id: Option<String>§tool_name: Option<String>§error_message: Option<String>§bytes_in: Option<u64>§bytes_out: Option<u64>§request_json: Option<Value>§response_json: Option<Value>§parent_event_id: Option<String>§agent_session_id: Option<String>Trait Implementations§
Source§impl Clone for TraceEvent
impl Clone for TraceEvent
Source§fn clone(&self) -> TraceEvent
fn clone(&self) -> TraceEvent
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 TraceEvent
impl Debug for TraceEvent
Source§impl<'de> Deserialize<'de> for TraceEvent
impl<'de> Deserialize<'de> for TraceEvent
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<TraceEvent, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<TraceEvent, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for TraceEvent
impl Serialize for TraceEvent
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 TraceEvent
impl RefUnwindSafe for TraceEvent
impl Send for TraceEvent
impl Sync for TraceEvent
impl Unpin for TraceEvent
impl UnsafeUnpin for TraceEvent
impl UnwindSafe for TraceEvent
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