pub struct HomeStats {Show 16 fields
pub total: u64,
pub new_today: u64,
pub confirmed: u64,
pub total_ingested: u64,
pub active_insights: u64,
pub distilled_today: u64,
pub distilled_all: u64,
pub sources_archived: u64,
pub times_served_today: u64,
pub words_saved_today: u64,
pub times_served_week: u64,
pub words_saved_week: u64,
pub times_served_all: u64,
pub words_saved_all: u64,
pub corrections_active: u64,
pub top_memories: Vec<TopMemory>,
}Expand description
Home dashboard statistics.
Fields§
§total: u64§new_today: u64§confirmed: u64§total_ingested: u64§active_insights: u64§distilled_today: u64§distilled_all: u64§sources_archived: u64§times_served_today: u64§words_saved_today: u64§times_served_week: u64§words_saved_week: u64§times_served_all: u64§words_saved_all: u64§corrections_active: u64§top_memories: Vec<TopMemory>Trait Implementations§
Source§impl<'de> Deserialize<'de> for HomeStats
impl<'de> Deserialize<'de> for HomeStats
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
Auto Trait Implementations§
impl Freeze for HomeStats
impl RefUnwindSafe for HomeStats
impl Send for HomeStats
impl Sync for HomeStats
impl Unpin for HomeStats
impl UnsafeUnpin for HomeStats
impl UnwindSafe for HomeStats
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