pub struct HelpCacheStats {
pub hits: u64,
pub misses: u64,
pub dirty_updates: u64,
pub layout_rebuilds: u64,
}Expand description
Cache hit/miss statistics for HelpRenderState.
Fields§
§hits: u64§misses: u64§dirty_updates: u64§layout_rebuilds: u64Trait Implementations§
Source§impl Clone for HelpCacheStats
impl Clone for HelpCacheStats
Source§fn clone(&self) -> HelpCacheStats
fn clone(&self) -> HelpCacheStats
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 HelpCacheStats
impl Debug for HelpCacheStats
Source§impl Default for HelpCacheStats
impl Default for HelpCacheStats
Source§fn default() -> HelpCacheStats
fn default() -> HelpCacheStats
Returns the “default value” for a type. Read more
Source§impl PartialEq for HelpCacheStats
impl PartialEq for HelpCacheStats
impl Copy for HelpCacheStats
impl Eq for HelpCacheStats
impl StructuralPartialEq for HelpCacheStats
Auto Trait Implementations§
impl Freeze for HelpCacheStats
impl RefUnwindSafe for HelpCacheStats
impl Send for HelpCacheStats
impl Sync for HelpCacheStats
impl Unpin for HelpCacheStats
impl UnsafeUnpin for HelpCacheStats
impl UnwindSafe for HelpCacheStats
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.