pub struct TeamStatsTotals {
pub session_count: i64,
pub message_count: i64,
pub event_count: i64,
pub tool_call_count: i64,
pub duration_seconds: i64,
pub total_input_tokens: i64,
pub total_output_tokens: i64,
}Expand description
Aggregate totals across all sessions in a team.
Fields§
§session_count: i64§message_count: i64§event_count: i64§tool_call_count: i64§duration_seconds: i64§total_input_tokens: i64§total_output_tokens: i64Trait Implementations§
Source§impl Debug for TeamStatsTotals
impl Debug for TeamStatsTotals
Source§impl From<SessionAggregate> for TeamStatsTotals
impl From<SessionAggregate> for TeamStatsTotals
Source§fn from(a: SessionAggregate) -> Self
fn from(a: SessionAggregate) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for TeamStatsTotals
impl RefUnwindSafe for TeamStatsTotals
impl Send for TeamStatsTotals
impl Sync for TeamStatsTotals
impl Unpin for TeamStatsTotals
impl UnwindSafe for TeamStatsTotals
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