pub struct FixedPointExecutionPlanCacheStats {
pub hits: u64,
pub misses: u64,
pub evictions: u64,
pub entries: usize,
}Expand description
Runtime counters for FixedPointExecutionPlanCache.
Fields§
§hits: u64Successful lookups that reused a prior graph/backend/density-bucket plan.
misses: u64Lookups that had to build a new plan entry.
evictions: u64Least-recently-used entries evicted to enforce the cache bound.
entries: usizeCurrent cached plan entries.
Trait Implementations§
Source§impl Clone for FixedPointExecutionPlanCacheStats
impl Clone for FixedPointExecutionPlanCacheStats
Source§fn clone(&self) -> FixedPointExecutionPlanCacheStats
fn clone(&self) -> FixedPointExecutionPlanCacheStats
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 FixedPointExecutionPlanCacheStats
Source§impl Default for FixedPointExecutionPlanCacheStats
impl Default for FixedPointExecutionPlanCacheStats
Source§fn default() -> FixedPointExecutionPlanCacheStats
fn default() -> FixedPointExecutionPlanCacheStats
Returns the “default value” for a type. Read more
impl Eq for FixedPointExecutionPlanCacheStats
impl StructuralPartialEq for FixedPointExecutionPlanCacheStats
Auto Trait Implementations§
impl Freeze for FixedPointExecutionPlanCacheStats
impl RefUnwindSafe for FixedPointExecutionPlanCacheStats
impl Send for FixedPointExecutionPlanCacheStats
impl Sync for FixedPointExecutionPlanCacheStats
impl Unpin for FixedPointExecutionPlanCacheStats
impl UnsafeUnpin for FixedPointExecutionPlanCacheStats
impl UnwindSafe for FixedPointExecutionPlanCacheStats
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.