[][src]Enum perf_event::events::CacheOp

#[repr(u32)]
pub enum CacheOp {
    READ,
    WRITE,
    PREFETCH,
}

What sort of cache operation we would like to observe.

This is used in the Cache type as part of the identification of a cache event. Each variant here corresponds to a particular PERF_COUNT_HW_CACHE_OP_... constant supported by the perf_event_open system call.

Variants

READ

Read accesses.

WRITE

Write accesses.

PREFETCH

Prefetch accesses.

Trait Implementations

impl Clone for CacheOp[src]

impl Copy for CacheOp[src]

impl Debug for CacheOp[src]

impl Eq for CacheOp[src]

impl PartialEq<CacheOp> for CacheOp[src]

impl StructuralEq for CacheOp[src]

impl StructuralPartialEq for CacheOp[src]

Auto Trait Implementations

impl RefUnwindSafe for CacheOp

impl Send for CacheOp

impl Sync for CacheOp

impl Unpin for CacheOp

impl UnwindSafe for CacheOp

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.