pub struct StaticLayerMemoryCacheStats {
pub entry_count: usize,
pub bytes: usize,
pub budget_bytes: usize,
pub hits: u64,
pub misses: u64,
pub stores: u64,
pub evictions: u64,
}Fields§
§entry_count: usize§bytes: usize§budget_bytes: usize§hits: u64§misses: u64§stores: u64§evictions: u64Trait Implementations§
Source§impl Clone for StaticLayerMemoryCacheStats
impl Clone for StaticLayerMemoryCacheStats
Source§fn clone(&self) -> StaticLayerMemoryCacheStats
fn clone(&self) -> StaticLayerMemoryCacheStats
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 StaticLayerMemoryCacheStats
impl Debug for StaticLayerMemoryCacheStats
Source§impl Default for StaticLayerMemoryCacheStats
impl Default for StaticLayerMemoryCacheStats
Source§fn default() -> StaticLayerMemoryCacheStats
fn default() -> StaticLayerMemoryCacheStats
Returns the “default value” for a type. Read more
impl Eq for StaticLayerMemoryCacheStats
impl StructuralPartialEq for StaticLayerMemoryCacheStats
Auto Trait Implementations§
impl Freeze for StaticLayerMemoryCacheStats
impl RefUnwindSafe for StaticLayerMemoryCacheStats
impl Send for StaticLayerMemoryCacheStats
impl Sync for StaticLayerMemoryCacheStats
impl Unpin for StaticLayerMemoryCacheStats
impl UnsafeUnpin for StaticLayerMemoryCacheStats
impl UnwindSafe for StaticLayerMemoryCacheStats
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