pub enum CombResult {
Hit {
data: CombData,
age_ms: u128,
stale: bool,
},
Miss,
}Expand description
Result of a cache query.
Variants§
Hit
Cache hit — data is available.
Miss
Cache miss — provider hasn’t computed this yet. The daemon will compute it in the background; retry shortly.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CombResult
impl RefUnwindSafe for CombResult
impl Send for CombResult
impl Sync for CombResult
impl Unpin for CombResult
impl UnsafeUnpin for CombResult
impl UnwindSafe for CombResult
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