pub enum HardwareCacheOp {
Read,
Write,
Prefetch,
}
Variants
Read
PERF_COUNT_HW_CACHE_OP_READ
Write
PERF_COUNT_HW_CACHE_OP_WRITE
Prefetch
PERF_COUNT_HW_CACHE_OP_PREFETCH
Implementations
Trait Implementations
sourceimpl Clone for HardwareCacheOp
impl Clone for HardwareCacheOp
sourcefn clone(&self) -> HardwareCacheOp
fn clone(&self) -> HardwareCacheOp
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for HardwareCacheOp
impl Debug for HardwareCacheOp
impl Copy for HardwareCacheOp
Auto Trait Implementations
impl RefUnwindSafe for HardwareCacheOp
impl Send for HardwareCacheOp
impl Sync for HardwareCacheOp
impl Unpin for HardwareCacheOp
impl UnwindSafe for HardwareCacheOp
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more