pub struct FullTextIndexStats {
pub document_count: u32,
pub unique_terms: usize,
pub avg_doc_length: f32,
}Expand description
Full-text index statistics
Fields§
§document_count: u32§unique_terms: usize§avg_doc_length: f32Trait Implementations§
Source§impl Debug for FullTextIndexStats
impl Debug for FullTextIndexStats
Auto Trait Implementations§
impl Freeze for FullTextIndexStats
impl RefUnwindSafe for FullTextIndexStats
impl Send for FullTextIndexStats
impl Sync for FullTextIndexStats
impl Unpin for FullTextIndexStats
impl UnsafeUnpin for FullTextIndexStats
impl UnwindSafe for FullTextIndexStats
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