pub struct CudaMegakernelPlanCacheStats {
pub hits: u64,
pub misses: u64,
pub evictions: u64,
pub entries: usize,
}Expand description
Runtime counters for CudaMegakernelPlanCache.
Fields§
§hits: u64Cache lookup hits.
misses: u64Cache lookup misses.
evictions: u64Entries evicted by the bounded LRU policy.
entries: usizeCurrent entry count.
Trait Implementations§
Source§impl Clone for CudaMegakernelPlanCacheStats
impl Clone for CudaMegakernelPlanCacheStats
Source§fn clone(&self) -> CudaMegakernelPlanCacheStats
fn clone(&self) -> CudaMegakernelPlanCacheStats
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 CudaMegakernelPlanCacheStats
impl Debug for CudaMegakernelPlanCacheStats
Source§impl Default for CudaMegakernelPlanCacheStats
impl Default for CudaMegakernelPlanCacheStats
Source§fn default() -> CudaMegakernelPlanCacheStats
fn default() -> CudaMegakernelPlanCacheStats
Returns the “default value” for a type. Read more
Source§impl PartialEq for CudaMegakernelPlanCacheStats
impl PartialEq for CudaMegakernelPlanCacheStats
Source§fn eq(&self, other: &CudaMegakernelPlanCacheStats) -> bool
fn eq(&self, other: &CudaMegakernelPlanCacheStats) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for CudaMegakernelPlanCacheStats
impl Eq for CudaMegakernelPlanCacheStats
impl StructuralPartialEq for CudaMegakernelPlanCacheStats
Auto Trait Implementations§
impl Freeze for CudaMegakernelPlanCacheStats
impl RefUnwindSafe for CudaMegakernelPlanCacheStats
impl Send for CudaMegakernelPlanCacheStats
impl Sync for CudaMegakernelPlanCacheStats
impl Unpin for CudaMegakernelPlanCacheStats
impl UnsafeUnpin for CudaMegakernelPlanCacheStats
impl UnwindSafe for CudaMegakernelPlanCacheStats
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§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.