pub struct IndexStats {
pub unique_values: usize,
pub total_documents: usize,
pub avg_docs_per_value: usize,
}Expand description
Statistics for an index
Fields§
§unique_values: usizeNumber of unique values in the index
total_documents: usizeTotal number of documents covered by the index
avg_docs_per_value: usizeAverage number of documents per unique value
Trait Implementations§
Auto Trait Implementations§
impl Freeze for IndexStats
impl RefUnwindSafe for IndexStats
impl Send for IndexStats
impl Sync for IndexStats
impl Unpin for IndexStats
impl UnwindSafe for IndexStats
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