pub enum CacheOp {
Clean,
Invalidate,
CleanInvalidate,
}Expand description
Cache operation type
Variants§
Clean
Clean cache (write back dirty lines)
Invalidate
Invalidate cache (discard lines)
CleanInvalidate
Clean and invalidate
Trait Implementations§
impl Copy for CacheOp
impl Eq for CacheOp
impl StructuralPartialEq for CacheOp
Auto Trait Implementations§
impl Freeze for CacheOp
impl RefUnwindSafe for CacheOp
impl Send for CacheOp
impl Sync for CacheOp
impl Unpin for CacheOp
impl UnsafeUnpin for CacheOp
impl UnwindSafe for CacheOp
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