pub struct FullTextStats {
pub document_count: u64,
pub term_count: u64,
}Expand description
Full-text index statistics
Fields§
§document_count: u64Number of documents indexed
term_count: u64Number of unique terms
Trait Implementations§
Source§impl Clone for FullTextStats
impl Clone for FullTextStats
Source§fn clone(&self) -> FullTextStats
fn clone(&self) -> FullTextStats
Returns a duplicate of the value. Read more
1.0.0 · 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 FullTextStats
impl Debug for FullTextStats
Source§impl<'de> Deserialize<'de> for FullTextStats
impl<'de> Deserialize<'de> for FullTextStats
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 FullTextStats
impl RefUnwindSafe for FullTextStats
impl Send for FullTextStats
impl Sync for FullTextStats
impl Unpin for FullTextStats
impl UnsafeUnpin for FullTextStats
impl UnwindSafe for FullTextStats
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