pub struct UserStats {
pub user_id: String,
pub nickname: 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-user aggregated statistics within a team.
Fields§
§user_id: String§nickname: 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 UserStats
impl RefUnwindSafe for UserStats
impl Send for UserStats
impl Sync for UserStats
impl Unpin for UserStats
impl UnwindSafe for UserStats
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