pub struct Event {Show 22 fields
pub session_id: String,
pub seq: u64,
pub ts_ms: u64,
pub ts_exact: bool,
pub kind: EventKind,
pub source: EventSource,
pub tool: Option<String>,
pub tool_call_id: Option<String>,
pub tokens_in: Option<u32>,
pub tokens_out: Option<u32>,
pub reasoning_tokens: Option<u32>,
pub cost_usd_e6: Option<i64>,
pub stop_reason: Option<String>,
pub latency_ms: Option<u32>,
pub ttft_ms: Option<u32>,
pub retry_count: Option<u16>,
pub context_used_tokens: Option<u32>,
pub context_max_tokens: Option<u32>,
pub cache_creation_tokens: Option<u32>,
pub cache_read_tokens: Option<u32>,
pub system_prompt_tokens: Option<u32>,
pub payload: Value,
}Fields§
§session_id: String§seq: u64§ts_ms: u64§ts_exact: bool§kind: EventKind§source: EventSource§tool: Option<String>§tool_call_id: Option<String>§tokens_in: Option<u32>§tokens_out: Option<u32>§reasoning_tokens: Option<u32>§cost_usd_e6: Option<i64>§stop_reason: Option<String>§latency_ms: Option<u32>§ttft_ms: Option<u32>§retry_count: Option<u16>§context_used_tokens: Option<u32>§context_max_tokens: Option<u32>§cache_creation_tokens: Option<u32>§cache_read_tokens: Option<u32>§system_prompt_tokens: Option<u32>§payload: ValueTrait Implementations§
Source§impl<'de> Deserialize<'de> for Event
impl<'de> Deserialize<'de> for Event
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
Auto Trait Implementations§
impl Freeze for Event
impl RefUnwindSafe for Event
impl Send for Event
impl Sync for Event
impl Unpin for Event
impl UnsafeUnpin for Event
impl UnwindSafe for Event
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more