pub enum TuneCacheResult {
Hit {
fastest_index: usize,
},
Miss,
Unchecked,
}
Expand description
Result of the cache try
Variants§
Hit
An operation is found.
Miss
No operation is found yet.
Unchecked
An operation is found, but checksum isn’t done.
Auto Trait Implementations§
impl Freeze for TuneCacheResult
impl RefUnwindSafe for TuneCacheResult
impl Send for TuneCacheResult
impl Sync for TuneCacheResult
impl Unpin for TuneCacheResult
impl UnwindSafe for TuneCacheResult
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