Struct dmi::Table

source ·
pub struct Table {
    pub header: Header,
    pub data: Vec<u8>,
    pub strings: Vec<String>,
}

Fields§

§header: Header§data: Vec<u8>§strings: Vec<String>

Implementations§

source§

impl Table

source

pub fn get<T: TableKind>(&self) -> Option<&T>

Examples found in repository?
examples/print.rs (line 9)
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
fn main() {
    let path = env::args()
        .nth(1)
        .unwrap_or_else(|| "/sys/firmware/dmi/tables/DMI".to_string());
    let data = fs::read(path).unwrap();
    for table in dmi::tables(&data) {
        if let Some(info) = table.get::<dmi::BiosInfo>() {
            println!("{:?}", info);
        } else if let Some(info) = table.get::<dmi::SystemInfo>() {
            println!("{:?}", info);
        } else if let Some(info) = table.get::<dmi::BaseBoardInfo>() {
            println!("{:?}", info);
        } else if let Some(info) = table.get::<dmi::ChassisInfo>() {
            println!("{:?}", info);
        } else if let Some(info) = table.get::<dmi::ProcessorInfo>() {
            println!("{:?}", info);
        } else if let Some(info) = table.get::<dmi::MemoryDevice>() {
            println!("{:?}", info);
        } else {
            println!("Unknown table: {}", table.header.kind);
            continue;
        }
        println!("    strings: {:?}", table.strings);
    }
}
source

pub fn get_str(&self, index: u8) -> Option<&String>

Trait Implementations§

source§

impl Clone for Table

source§

fn clone(&self) -> Table

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more

Auto Trait Implementations§

§

impl RefUnwindSafe for Table

§

impl Send for Table

§

impl Sync for Table

§

impl Unpin for Table

§

impl UnwindSafe for Table

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.