Struct smbioslib::SMBiosBisEntryPoint[][src]

pub struct SMBiosBisEntryPoint<'a> { /* fields omitted */ }

Boot Integrity Services (BIS) (Type 31)

Structure is reserved for use by the Boot Integrity Services (BIS)

This class is compliant with: Boot Integrity Services Application Programming Interface Version 1.0 with added corrigenda: bis037 Published August 31, 1999

Note: The BIS (Boot Integrity Services) Entry Point structure is not defined in the SMBIOS DMTF document. bisapi037.pdf, section 3.1.3 typedef struct _BIS_ENTRY_POINT

Implementations

impl<'a> SMBiosBisEntryPoint<'a>[src]

pub fn checksum(&self) -> Option<u8>[src]

Used to make the 8-bit checksum of this structure equal zero.

pub fn bis_entry_16(&self) -> Option<u32>[src]

BIS entry point pointer for use by 16-bit real-mode callers. This is a segmented pointer(in segment:offset form).

Real Mode: In Real Mode all addresses are composed of Segment:Offset pairs, with both Segment and Offset being 16 bits.These combine to form a 20-bit physical address that cannot access above approximately the 1 Megabyte boundary.This mode is referred to in this section as “16-bit real-mode” or “16-bit mode”. Callers in this mode may only invoke BIS through the bisEntry16 entry point. The bisEntry16 function returns with the processor in 16-bit real-mode.

pub fn bis_entry_32(&self) -> Option<u32>[src]

BIS entry point pointer for use by 32-bit flat physical address mode callers. This is a 32-bit physical address.

Flat Mode: A 32-bit (protected) IA-32 processor mode where CS:0, DS:0, and SS:0 all refer to physical location 0 and all have 4 GB of address space.This mode is referred to in this section as “32-bit flat-mode” or “32-bit mode”. Callers in this mode may only invoke BIS through the bisEntry32 entry point. The bisEntry32 function returns with the processor in 32-bit flat-mode.

Trait Implementations

impl Debug for SMBiosBisEntryPoint<'_>[src]

fn fmt(&self, fmt: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl<'a> SMBiosStruct<'a> for SMBiosBisEntryPoint<'a>[src]

const STRUCT_TYPE: u8[src]

The SMBIOS structure type Read more

fn new(parts: &'a UndefinedStruct) -> Self[src]

Creates a new instance of the implementing SMBIOS type

fn parts(&self) -> &'a UndefinedStruct[src]

Contains the standard parts/sections of the implementing SMBIOS type.

impl Serialize for SMBiosBisEntryPoint<'_>[src]

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error> where
    S: Serializer
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

impl<'a> RefUnwindSafe for SMBiosBisEntryPoint<'a>

impl<'a> Send for SMBiosBisEntryPoint<'a>

impl<'a> Sync for SMBiosBisEntryPoint<'a>

impl<'a> Unpin for SMBiosBisEntryPoint<'a>

impl<'a> UnwindSafe for SMBiosBisEntryPoint<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T

Notable traits for &'_ mut R

impl<'_, R> Read for &'_ mut R where
    R: Read + ?Sized
impl<'_, W> Write for &'_ mut W where
    W: Write + ?Sized
[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

Notable traits for &'_ mut R

impl<'_, R> Read for &'_ mut R where
    R: Read + ?Sized
impl<'_, W> Write for &'_ mut W where
    W: Write + ?Sized
[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

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.

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

Performs the conversion.

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.

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

Performs the conversion.