pub struct CacheEntryParams<'a> {
pub key_hash: &'a str,
pub key_data: Option<&'a [u8]>,
pub key_type: &'a str,
pub layer_index: i32,
pub head_index: Option<i32>,
pub access_count: i32,
pub last_accessed_seconds_ago: f32,
pub value_size_bytes: usize,
}Expand description
Parameters for scoring a cache entry
Fields§
§key_hash: &'a str§key_data: Option<&'a [u8]>§key_type: &'a str§layer_index: i32§head_index: Option<i32>§access_count: i32§last_accessed_seconds_ago: f32§value_size_bytes: usizeAuto Trait Implementations§
impl<'a> Freeze for CacheEntryParams<'a>
impl<'a> RefUnwindSafe for CacheEntryParams<'a>
impl<'a> Send for CacheEntryParams<'a>
impl<'a> Sync for CacheEntryParams<'a>
impl<'a> Unpin for CacheEntryParams<'a>
impl<'a> UnsafeUnpin for CacheEntryParams<'a>
impl<'a> UnwindSafe for CacheEntryParams<'a>
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more