pub struct ToolStats {
pub tool: String,
pub session_count: i64,
pub message_count: i64,
pub event_count: i64,
pub duration_seconds: i64,
pub total_input_tokens: i64,
pub total_output_tokens: i64,
}Expand description
Per-tool aggregated statistics within a team.
Fields§
§tool: String§session_count: i64§message_count: i64§event_count: i64§duration_seconds: i64§total_input_tokens: i64§total_output_tokens: i64Trait Implementations§
Auto Trait Implementations§
impl Freeze for ToolStats
impl RefUnwindSafe for ToolStats
impl Send for ToolStats
impl Sync for ToolStats
impl Unpin for ToolStats
impl UnwindSafe for ToolStats
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