Enum smbioslib::AccessMethod[][src]

pub enum AccessMethod {
    IndexedIO18Bit,
    IndexedIO28Bit,
    IndexedIO116Bit,
    MemoryMapped32Bit,
    GeneralPurposeNonVolatile,
    None,
}

System Event Log - Access Method

Defines the Location and Method used by higher-level software to access the log area.

Variants

IndexedIO18Bit

00h Indexed I/O

1 8-bit index port, 1 8-bit data port. The Access Method Address field contains the 16-bit I/O addresses for the index and data ports. See 7.16.2.1 for usage details.

IndexedIO28Bit

01h Indexed I/O

2 8-bit index ports, 1 8-bit data port. The Access Method Address field contains the 16-bit I/O address for the index and data ports. See 7.16.2.2 for usage details.

IndexedIO116Bit

02h Indexed I/O

1 16-bit index port, 1 8-bit data port. The Access Method Address field contains the 16-bit I/O address for the index and data ports. See 7.16.2.3 for usage details.

MemoryMapped32Bit

03h Memory-mapped physical 32-bit address.

The Access Method Address field contains the 4-byte (Intel DWORD format) starting physical address.

GeneralPurposeNonVolatile

04h Available through General-Purpose NonVolatile Data functions.

The Access Method Address field contains the 2-byte (Intel WORD format) GPNV handle.

None

A value unknown to this standard, check the raw value

Trait Implementations

impl Debug for AccessMethod[src]

impl Eq for AccessMethod[src]

impl From<u8> for AccessMethod[src]

impl PartialEq<AccessMethod> for AccessMethod[src]

impl StructuralEq for AccessMethod[src]

impl StructuralPartialEq for AccessMethod[src]

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.