pub struct CacheInspection {
pub stats: CacheStats,
pub oldest_cached_at: Option<String>,
pub newest_cached_at: Option<String>,
}Expand description
Detailed cache inspection data for CLI and diagnostics.
Fields§
§stats: CacheStats§oldest_cached_at: Option<String>§newest_cached_at: Option<String>Trait Implementations§
Source§impl Clone for CacheInspection
impl Clone for CacheInspection
Source§fn clone(&self) -> CacheInspection
fn clone(&self) -> CacheInspection
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 CacheInspection
impl Debug for CacheInspection
Source§impl PartialEq for CacheInspection
impl PartialEq for CacheInspection
Source§fn eq(&self, other: &CacheInspection) -> bool
fn eq(&self, other: &CacheInspection) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for CacheInspection
impl StructuralPartialEq for CacheInspection
Auto Trait Implementations§
impl Freeze for CacheInspection
impl RefUnwindSafe for CacheInspection
impl Send for CacheInspection
impl Sync for CacheInspection
impl Unpin for CacheInspection
impl UnsafeUnpin for CacheInspection
impl UnwindSafe for CacheInspection
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