[][src]Struct raw_cpuid::DatInfo

pub struct DatInfo { /* fields omitted */ }

Deterministic Address Translation Structure

Implementations

impl DatInfo[src]

pub fn has_4k_entries(&self) -> bool[src]

4K page size entries supported by this structure

pub fn has_2mb_entries(&self) -> bool[src]

2MB page size entries supported by this structure

pub fn has_4mb_entries(&self) -> bool[src]

4MB page size entries supported by this structure

pub fn has_1gb_entries(&self) -> bool[src]

1GB page size entries supported by this structure

pub fn is_fully_associative(&self) -> bool[src]

Fully associative structure

pub fn partitioning(&self) -> u8[src]

Partitioning (0: Soft partitioning between the logical processors sharing this structure).

pub fn ways(&self) -> u16[src]

Ways of associativity.

pub fn sets(&self) -> u32[src]

Number of Sets.

pub fn cache_type(&self) -> DatType[src]

Translation cache type field.

pub fn cache_level(&self) -> u8[src]

Translation cache level (starts at 1)

pub fn max_addressable_ids(&self) -> u16[src]

Maximum number of addressable IDs for logical processors sharing this translation cache

Trait Implementations

impl Debug for DatInfo[src]

impl Default for DatInfo[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.