[][src]Enum raw_cpuid::DatType

pub enum DatType {
    Null,
    DataTLB,
    InstructionTLB,
    UnifiedTLB,
    Unknown,
}

Deterministic Address Translation cache type (EDX bits 04 -- 00)

Variants

Null

Null (indicates this sub-leaf is not valid).

DataTLB
InstructionTLB
UnifiedTLB

Some unified TLBs will allow a single TLB entry to satisfy data read/write and instruction fetches. Others will require separate entries (e.g., one loaded on data read/write and another loaded on an instruction fetch) . Please see the Intel® 64 and IA-32 Architectures Optimization Reference Manual for details of a particular product.

Unknown

Trait Implementations

impl Debug for DatType[src]

impl Default for DatType[src]

Auto Trait Implementations

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, 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.