pub struct SearchStatistics {
pub total_symbols: usize,
pub total_references: usize,
pub kind_distribution: HashMap<String, usize>,
}Expand description
Statistics about the search index
Fields§
§total_symbols: usizeTotal number of symbols
total_references: usizeTotal number of references
kind_distribution: HashMap<String, usize>Distribution of symbols by kind
Trait Implementations§
Source§impl Clone for SearchStatistics
impl Clone for SearchStatistics
Source§fn clone(&self) -> SearchStatistics
fn clone(&self) -> SearchStatistics
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 moreAuto Trait Implementations§
impl Freeze for SearchStatistics
impl RefUnwindSafe for SearchStatistics
impl Send for SearchStatistics
impl Sync for SearchStatistics
impl Unpin for SearchStatistics
impl UnwindSafe for SearchStatistics
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