Enum cache_size::CacheType[][src]

pub enum CacheType {
    Data,
    Instruction,
    Unified,
}

All different types of cache

This is just a thin wrapper over raw_cpuid::CacheType listing only the interesting possible types, and using more user-friendly CameCase names.

Variants

Data cache

Instruction cache

Unified Data + Instruction cache

Trait Implementations

impl Debug for CacheType
[src]

Formats the value using the given formatter. Read more

impl Copy for CacheType
[src]

impl Clone for CacheType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for CacheType
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for CacheType
[src]

impl Into<CacheType> for CacheType
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for CacheType

impl Sync for CacheType