pub struct CacheStatisticsExport {
pub total_clears: usize,
pub total_retrievals: usize,
pub entries_preserved: usize,
pub entries_cleared: usize,
pub entries_retrieved: usize,
pub active_sessions: usize,
pub last_operation: Option<DateTime<Utc>>,
pub operation_history_count: usize,
}Fields§
§total_clears: usize§total_retrievals: usize§entries_preserved: usize§entries_cleared: usize§entries_retrieved: usize§active_sessions: usize§last_operation: Option<DateTime<Utc>>§operation_history_count: usizeTrait Implementations§
Source§impl Clone for CacheStatisticsExport
impl Clone for CacheStatisticsExport
Source§fn clone(&self) -> CacheStatisticsExport
fn clone(&self) -> CacheStatisticsExport
Returns a duplicate of the value. Read more
1.0.0 · 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 CacheStatisticsExport
impl Debug for CacheStatisticsExport
Auto Trait Implementations§
impl Freeze for CacheStatisticsExport
impl RefUnwindSafe for CacheStatisticsExport
impl Send for CacheStatisticsExport
impl Sync for CacheStatisticsExport
impl Unpin for CacheStatisticsExport
impl UnsafeUnpin for CacheStatisticsExport
impl UnwindSafe for CacheStatisticsExport
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<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