Trait smbios::EntryPoint[][src]

pub trait EntryPoint {
    fn table(&self) -> (usize, usize);
fn version(&self) -> (usize, usize, usize); }

Provides access to common information for SMBIOS entry points, including the SMBIOS version in use and the location and size of the SMBIOS table in system memory.

Required Methods

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

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

Implementors