pub struct CompiledProgramCacheStats {
pub hits: u64,
pub misses: u64,
pub evictions: u64,
pub entries: usize,
pub capacity: usize,
}Fields§
§hits: u64§misses: u64§evictions: u64§entries: usize§capacity: usizeTrait Implementations§
Source§impl Clone for CompiledProgramCacheStats
impl Clone for CompiledProgramCacheStats
Source§fn clone(&self) -> CompiledProgramCacheStats
fn clone(&self) -> CompiledProgramCacheStats
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 moreimpl Copy for CompiledProgramCacheStats
Source§impl Debug for CompiledProgramCacheStats
impl Debug for CompiledProgramCacheStats
Source§impl Default for CompiledProgramCacheStats
impl Default for CompiledProgramCacheStats
Source§fn default() -> CompiledProgramCacheStats
fn default() -> CompiledProgramCacheStats
Returns the “default value” for a type. Read more
impl Eq for CompiledProgramCacheStats
Source§impl PartialEq for CompiledProgramCacheStats
impl PartialEq for CompiledProgramCacheStats
Source§fn eq(&self, other: &CompiledProgramCacheStats) -> bool
fn eq(&self, other: &CompiledProgramCacheStats) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CompiledProgramCacheStats
Auto Trait Implementations§
impl Freeze for CompiledProgramCacheStats
impl RefUnwindSafe for CompiledProgramCacheStats
impl Send for CompiledProgramCacheStats
impl Sync for CompiledProgramCacheStats
impl Unpin for CompiledProgramCacheStats
impl UnsafeUnpin for CompiledProgramCacheStats
impl UnwindSafe for CompiledProgramCacheStats
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