pub struct CacheRead {
pub entry: CacheEntry,
pub expires_at: Option<SystemTime>,
pub stale_until: Option<SystemTime>,
}Fields§
§entry: CacheEntryCached entry together with timing metadata.
expires_at: Option<SystemTime>§stale_until: Option<SystemTime>Trait Implementations§
Auto Trait Implementations§
impl !Freeze for CacheRead
impl RefUnwindSafe for CacheRead
impl Send for CacheRead
impl Sync for CacheRead
impl Unpin for CacheRead
impl UnwindSafe for CacheRead
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