Struct smbios::Bits32[][src]

pub struct Bits32 {
    pub checksum: u8,
    pub length: u8,
    pub major: u8,
    pub minor: u8,
    pub max_structure_size: u16,
    pub entry_point_revision: u8,
    pub formatted_area: [u8; 5],
    pub intermediate_checksum: u8,
    pub structure_table_length: u16,
    pub structure_table_address: u32,
    pub number_structures: u16,
    pub bcd_revision: u8,
}

Contains the information found in a 32-bit SMBIOS entry point.

Fields

Trait Implementations

impl EntryPoint for Bits32
[src]

Provides the address of the SMBIOS table in system memory and its size in bytes. Read more

Provides the major, minor, and revision numbers for SMBIOS on this system. Read more

impl Debug for Bits32
[src]

Formats the value using the given formatter. Read more

impl PartialEq for Bits32
[src]

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

This method tests for !=.

Auto Trait Implementations

impl Send for Bits32

impl Sync for Bits32