pub struct AccountStatistics {
pub documents: usize,
pub folders: Vec<(Summary, usize)>,
pub tags: HashMap<String, usize>,
pub types: HashMap<SecretType, usize>,
pub favorites: usize,
}Expand description
Account statistics derived from the search index.
Fields§
§documents: usizeNumber of documents in the search index.
folders: Vec<(Summary, usize)>Folder counts.
Tag counts.
types: HashMap<SecretType, usize>Types.
favorites: usizeNumber of favorites.
Trait Implementations§
Source§impl Debug for AccountStatistics
impl Debug for AccountStatistics
Source§impl Default for AccountStatistics
impl Default for AccountStatistics
Source§fn default() -> AccountStatistics
fn default() -> AccountStatistics
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AccountStatistics
impl<'de> Deserialize<'de> for AccountStatistics
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 AccountStatistics
impl RefUnwindSafe for AccountStatistics
impl Send for AccountStatistics
impl Sync for AccountStatistics
impl Unpin for AccountStatistics
impl UnwindSafe for AccountStatistics
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