pub struct EventRecord {
pub event_id: EventId,
pub trace_id: TraceId,
pub run_id: RunId,
pub parent_span_id: Option<SpanId>,
pub seq: u64,
pub event_kind: EventKind,
pub name: String,
pub timestamp: u64,
pub attributes: HashMap<String, Value>,
pub schema_version: String,
}Expand description
A point-in-time event recorded within a span. Events carry their parent
span and an ordering seq so an event stream (retries, budget checks,
guardrail trips, REPL steps) survives without collapsing into many tiny
spans.
Fields§
§event_id: EventId§trace_id: TraceId§run_id: RunId§parent_span_id: Option<SpanId>§seq: u64Monotonic ordering hint within the process/trace.
event_kind: EventKind§name: String§timestamp: u64§attributes: HashMap<String, Value>§schema_version: StringTrait Implementations§
Source§impl Clone for EventRecord
impl Clone for EventRecord
Source§fn clone(&self) -> EventRecord
fn clone(&self) -> EventRecord
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 EventRecord
impl Debug for EventRecord
Source§impl<'de> Deserialize<'de> for EventRecord
impl<'de> Deserialize<'de> for EventRecord
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 EventRecord
impl PartialEq for EventRecord
Source§fn eq(&self, other: &EventRecord) -> bool
fn eq(&self, other: &EventRecord) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for EventRecord
impl Serialize for EventRecord
impl StructuralPartialEq for EventRecord
Auto Trait Implementations§
impl Freeze for EventRecord
impl RefUnwindSafe for EventRecord
impl Send for EventRecord
impl Sync for EventRecord
impl Unpin for EventRecord
impl UnsafeUnpin for EventRecord
impl UnwindSafe for EventRecord
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