pub struct CacheProjections {
pub l1_hit_savings_usd: f64,
pub l1_hit_probability: f32,
pub l2_hit_savings_usd: f64,
pub l2_hit_probability: f32,
pub weighted_savings_usd: f64,
}Fields§
§l1_hit_savings_usd: f64§l1_hit_probability: f32§l2_hit_savings_usd: f64§l2_hit_probability: f32§weighted_savings_usd: f64Trait Implementations§
Source§impl Clone for CacheProjections
impl Clone for CacheProjections
Source§fn clone(&self) -> CacheProjections
fn clone(&self) -> CacheProjections
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 CacheProjections
impl Debug for CacheProjections
Auto Trait Implementations§
impl Freeze for CacheProjections
impl RefUnwindSafe for CacheProjections
impl Send for CacheProjections
impl Sync for CacheProjections
impl Unpin for CacheProjections
impl UnsafeUnpin for CacheProjections
impl UnwindSafe for CacheProjections
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