pub struct RuntimeStatsSnapshot {
pub dimension_lookups: u64,
pub dimension_hits: u64,
pub dimension_misses: u64,
pub in_memory_lookups: u64,
pub indexed_lookups: u64,
pub index_fallbacks: u64,
}Expand description
Consistent snapshot of runtime stats at a point in time.
Fields§
§dimension_lookups: u64§dimension_hits: u64§dimension_misses: u64§in_memory_lookups: u64§indexed_lookups: u64§index_fallbacks: u64Trait Implementations§
Source§impl Clone for RuntimeStatsSnapshot
impl Clone for RuntimeStatsSnapshot
Source§fn clone(&self) -> RuntimeStatsSnapshot
fn clone(&self) -> RuntimeStatsSnapshot
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RuntimeStatsSnapshot
impl Debug for RuntimeStatsSnapshot
Source§impl Default for RuntimeStatsSnapshot
impl Default for RuntimeStatsSnapshot
Source§fn default() -> RuntimeStatsSnapshot
fn default() -> RuntimeStatsSnapshot
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RuntimeStatsSnapshot
impl RefUnwindSafe for RuntimeStatsSnapshot
impl Send for RuntimeStatsSnapshot
impl Sync for RuntimeStatsSnapshot
impl Unpin for RuntimeStatsSnapshot
impl UnsafeUnpin for RuntimeStatsSnapshot
impl UnwindSafe for RuntimeStatsSnapshot
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