Enum smbios::EntryPointType[][src]

pub enum EntryPointType {
    Unknown,
    Bits32(Bits32),
    Bits64(Bits64),
}

Possible entry point types and their contained structures.

Variants

An unknown entry point. Returned when no valid entry point is recognized by this library.

A 32-bit entry point.

A 64-bit entry point.

Trait Implementations

impl Debug for EntryPointType
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations