[][src]Struct raw_cpuid::MemoryEncryptionInfo

pub struct MemoryEncryptionInfo { /* fields omitted */ }

Implementations

impl MemoryEncryptionInfo[src]

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

Secure Memory Encryption is supported if set.

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

Secure Encrypted Virtualization is supported if set.

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

The Page Flush MSR is available if set.

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

SEV Encrypted State is supported if set.

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

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

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

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

Trait Implementations

impl Debug for MemoryEncryptionInfo[src]

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