#[repr(C)]pub enum CacheOp {
Clean = 0,
Invalidate = 1,
CleanAndInvalidate = 2,
}
Variants§
Clean = 0
Write back to memory
Invalidate = 1
Invalidate cache
CleanAndInvalidate = 2
Clean and invalidate
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CacheOp
impl RefUnwindSafe for CacheOp
impl Send for CacheOp
impl Sync for CacheOp
impl Unpin for CacheOp
impl UnwindSafe for CacheOp
Blanket Implementations§
Source§impl<T> Background for T
impl<T> Background for T
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