pub struct Statistics {
pub documents_total: u32,
pub documents_inbox: u32,
pub inbox_tag: u32,
pub inbox_tags: Vec<u32>,
pub document_file_type_counts: Vec<DocumentFileTypeCount>,
pub character_count: u64,
pub tag_count: u32,
pub correspondent_count: u32,
pub document_type_count: u32,
pub storage_path_count: u32,
pub current_asn: u32,
}Fields§
§documents_total: u32Total number of documents.
documents_inbox: u32Number of documents in the inbox.
inbox_tag: u32Tag used for documents in the inbox.
Tags used for documents in the inbox.
document_file_type_counts: Vec<DocumentFileTypeCount>Counts of document file types.
character_count: u64Total number of characters in all documents.
tag_count: u32Total number of tags.
correspondent_count: u32Total number of correspondents.
document_type_count: u32Total number of document types.
storage_path_count: u32Total number of storage paths.
current_asn: u32Current ASN.
Trait Implementations§
Source§impl Clone for Statistics
impl Clone for Statistics
Source§fn clone(&self) -> Statistics
fn clone(&self) -> Statistics
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for Statistics
impl Debug for Statistics
Source§impl<'de> Deserialize<'de> for Statistics
impl<'de> Deserialize<'de> for Statistics
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 Statistics
impl RefUnwindSafe for Statistics
impl Send for Statistics
impl Sync for Statistics
impl Unpin for Statistics
impl UnsafeUnpin for Statistics
impl UnwindSafe for Statistics
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