pub struct LeopardStats {
pub direct_entries: u64,
pub computed_entries: u64,
pub hits: u64,
pub misses: u64,
}Expand description
Statistics for Leopard index
Fields§
§direct_entries: u64Number of direct entries
computed_entries: u64Number of computed entries
hits: u64Number of index hits
misses: u64Number of index misses
Implementations§
Source§impl LeopardStats
impl LeopardStats
Trait Implementations§
Source§impl Clone for LeopardStats
impl Clone for LeopardStats
Source§fn clone(&self) -> LeopardStats
fn clone(&self) -> LeopardStats
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 LeopardStats
impl Debug for LeopardStats
Source§impl Default for LeopardStats
impl Default for LeopardStats
Source§fn default() -> LeopardStats
fn default() -> LeopardStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for LeopardStats
impl RefUnwindSafe for LeopardStats
impl Send for LeopardStats
impl Sync for LeopardStats
impl Unpin for LeopardStats
impl UnwindSafe for LeopardStats
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more