pub struct StaleCacheRead {
pub entry: CacheEntry,
pub stale: bool,
}Expand description
A cached entry plus whether it is past the freshness TTL.
Fields§
§entry: CacheEntry§stale: boolAuto Trait Implementations§
impl Freeze for StaleCacheRead
impl RefUnwindSafe for StaleCacheRead
impl Send for StaleCacheRead
impl Sync for StaleCacheRead
impl Unpin for StaleCacheRead
impl UnsafeUnpin for StaleCacheRead
impl UnwindSafe for StaleCacheRead
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