pub struct DailyRollupRow {Show 15 fields
pub day: String,
pub workspace_key: Option<String>,
pub provider: Option<String>,
pub model: Option<String>,
pub tool_name: Option<String>,
pub call_count: u64,
pub error_count: u64,
pub total_duration_ms: i64,
pub p50_duration_ms: Option<i64>,
pub p95_duration_ms: Option<i64>,
pub p99_duration_ms: Option<i64>,
pub prompt_tokens: u64,
pub completion_tokens: u64,
pub total_tokens: u64,
pub cached_prompt_tokens: u64,
}Fields§
§day: String§workspace_key: Option<String>§provider: Option<String>§model: Option<String>§tool_name: Option<String>§call_count: u64§error_count: u64§total_duration_ms: i64§p50_duration_ms: Option<i64>§p95_duration_ms: Option<i64>§p99_duration_ms: Option<i64>§prompt_tokens: u64§completion_tokens: u64§total_tokens: u64§cached_prompt_tokens: u64Trait Implementations§
Source§impl Clone for DailyRollupRow
impl Clone for DailyRollupRow
Source§fn clone(&self) -> DailyRollupRow
fn clone(&self) -> DailyRollupRow
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 DailyRollupRow
impl Debug for DailyRollupRow
Source§impl<'de> Deserialize<'de> for DailyRollupRow
impl<'de> Deserialize<'de> for DailyRollupRow
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 DailyRollupRow
impl PartialEq for DailyRollupRow
Source§fn eq(&self, other: &DailyRollupRow) -> bool
fn eq(&self, other: &DailyRollupRow) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DailyRollupRow
impl Serialize for DailyRollupRow
impl StructuralPartialEq for DailyRollupRow
Auto Trait Implementations§
impl Freeze for DailyRollupRow
impl RefUnwindSafe for DailyRollupRow
impl Send for DailyRollupRow
impl Sync for DailyRollupRow
impl Unpin for DailyRollupRow
impl UnsafeUnpin for DailyRollupRow
impl UnwindSafe for DailyRollupRow
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