pub struct Stats {
pub per_tool: Vec<(String, i64, i64)>,
pub per_month: Vec<(String, i64)>,
pub total_sessions: i64,
pub total_messages: i64,
pub projects: i64,
pub tags: i64,
pub summarized: i64,
pub files: i64,
pub archived: i64,
}Fields§
§per_tool: Vec<(String, i64, i64)>§per_month: Vec<(String, i64)>§total_sessions: i64§total_messages: i64§projects: i64§summarized: i64§files: i64Distinct files linked to at least one session (provenance coverage).
archived: i64Sessions kept after the tool deleted their originals (archive mode).
Auto Trait Implementations§
impl Freeze for Stats
impl RefUnwindSafe for Stats
impl Send for Stats
impl Sync for Stats
impl Unpin for Stats
impl UnsafeUnpin for Stats
impl UnwindSafe for Stats
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