pub struct CaseTraceRef {
pub conversation_id: String,
pub run_id: String,
pub provider: String,
pub trace_level: TraceLevel,
pub event_count: u64,
pub first_event_ms: i64,
pub last_event_ms: i64,
}Expand description
Pointer to the trace in agent-trace. Evaluate stores the reference and the derived metric values, never the spans themselves.
Fields§
§conversation_id: String§run_id: String§provider: String§trace_level: TraceLevel§event_count: u64§first_event_ms: i64§last_event_ms: i64Trait Implementations§
Source§impl Clone for CaseTraceRef
impl Clone for CaseTraceRef
Source§fn clone(&self) -> CaseTraceRef
fn clone(&self) -> CaseTraceRef
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 CaseTraceRef
impl Debug for CaseTraceRef
Source§impl<'de> Deserialize<'de> for CaseTraceRef
impl<'de> Deserialize<'de> for CaseTraceRef
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
impl Eq for CaseTraceRef
Source§impl PartialEq for CaseTraceRef
impl PartialEq for CaseTraceRef
Source§impl Serialize for CaseTraceRef
impl Serialize for CaseTraceRef
impl StructuralPartialEq for CaseTraceRef
Auto Trait Implementations§
impl Freeze for CaseTraceRef
impl RefUnwindSafe for CaseTraceRef
impl Send for CaseTraceRef
impl Sync for CaseTraceRef
impl Unpin for CaseTraceRef
impl UnsafeUnpin for CaseTraceRef
impl UnwindSafe for CaseTraceRef
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