pub struct ResidentLaunchCacheStats {
pub entries: usize,
pub hits: u64,
pub misses: u64,
}Expand description
Thread-local launch recommendation cache telemetry.
Fields§
§entries: usizeLive cache entries retained in the current thread.
hits: u64Cache hits served without recomputing launch geometry.
misses: u64Cache misses that required policy recomputation.
Trait Implementations§
Source§impl Clone for ResidentLaunchCacheStats
impl Clone for ResidentLaunchCacheStats
Source§fn clone(&self) -> ResidentLaunchCacheStats
fn clone(&self) -> ResidentLaunchCacheStats
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 ResidentLaunchCacheStats
Source§impl Debug for ResidentLaunchCacheStats
impl Debug for ResidentLaunchCacheStats
impl Eq for ResidentLaunchCacheStats
Source§impl PartialEq for ResidentLaunchCacheStats
impl PartialEq for ResidentLaunchCacheStats
impl StructuralPartialEq for ResidentLaunchCacheStats
Auto Trait Implementations§
impl Freeze for ResidentLaunchCacheStats
impl RefUnwindSafe for ResidentLaunchCacheStats
impl Send for ResidentLaunchCacheStats
impl Sync for ResidentLaunchCacheStats
impl Unpin for ResidentLaunchCacheStats
impl UnsafeUnpin for ResidentLaunchCacheStats
impl UnwindSafe for ResidentLaunchCacheStats
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.