[][src]Struct uefi::table::cfg::PropertiesTable

#[repr(C)]pub struct PropertiesTable {
    pub version: u32,
    pub length: u32,
    pub memory_protection: MemoryProtectionAttribute,
}

This table contains additional information about the UEFI implementation.

Fields

version: u32

Version of the UEFI properties table.

The only valid version currently is 0x10_000.

length: u32

Length in bytes of this table.

The initial version's length is 16.

memory_protection: MemoryProtectionAttribute

Memory protection attributes.

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.