pub enum ValidationCacheStatus {
Hit,
Miss,
}Expand description
Whether a validation result was served from the disk cache or freshly computed.
Variants§
Hit
Validation result was found in the disk cache.
Miss
Validation result was computed (cache miss or skip-read mode).
Trait Implementations§
Source§impl Clone for ValidationCacheStatus
impl Clone for ValidationCacheStatus
Source§fn clone(&self) -> ValidationCacheStatus
fn clone(&self) -> ValidationCacheStatus
Returns a duplicate of the value. Read more
1.0.0 · 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 ValidationCacheStatus
impl Debug for ValidationCacheStatus
Source§impl PartialEq for ValidationCacheStatus
impl PartialEq for ValidationCacheStatus
impl Copy for ValidationCacheStatus
impl Eq for ValidationCacheStatus
impl StructuralPartialEq for ValidationCacheStatus
Auto Trait Implementations§
impl Freeze for ValidationCacheStatus
impl RefUnwindSafe for ValidationCacheStatus
impl Send for ValidationCacheStatus
impl Sync for ValidationCacheStatus
impl Unpin for ValidationCacheStatus
impl UnsafeUnpin for ValidationCacheStatus
impl UnwindSafe for ValidationCacheStatus
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