pub enum CacheState {
Stale(HttpResponse),
Fresh(HttpResponse),
None,
}Variants§
Auto Trait Implementations§
impl Freeze for CacheState
impl RefUnwindSafe for CacheState
impl !Send for CacheState
impl !Sync for CacheState
impl Unpin for CacheState
impl UnsafeUnpin for CacheState
impl UnwindSafe for CacheState
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