Struct SMBiosTpmDevice

Source
pub struct SMBiosTpmDevice<'a> { /* private fields */ }
Expand description

§TPM Device (Type 43)

Implementations§

Source§

impl<'a> SMBiosTpmDevice<'a>

Source

pub fn vendor_id(&self) -> Option<VendorId<'_>>

Vendor Id

Specified as four ASCII characters, as defined by TCG Vendor ID (see CAP_VID in TCG Vendor ID Registry).

For example: Vendor ID string of “ABC” = (41 42 43 00) Vendor ID string of “ABCD” = (41 42 43 44)

Source

pub fn major_spec_version(&self) -> Option<u8>

Major spec version

Major TPM version supported by the TPM device. For example, the value is 01h for TPM v1.2 and is 02h for TPM v2.0.

Source

pub fn minor_spec_version(&self) -> Option<u8>

Minor spec version

Minor TPM version supported by the TPM device. For example, the value is 02h for TPM v1.2 and is 00h for TPM v2.0.

Source

pub fn firmware_version_1(&self) -> Option<u32>

Firmware version 1

For Major Spec Version 01h, this field contains the TPM_VERSION structure defined in the TPM Main Specification, Part 2, Section 5.3.

For Major Spec Version 02h, this field contains the most significant 32 bits of a TPM vendor-specific value for firmware version (see TPM_PT_FIRMWARE_VERSION_1 in TPM Structures specification).

Source

pub fn firmware_version_2(&self) -> Option<u32>

Firmware version 2

For Major Spec Version 01h, this field contains 00h.

For Major Spec Version 02h, this field contains the least significant 32 bits of a TPM vendor-specific value for firmware version (see TPM_PT_FIRMWARE_VERSION_2 in TPM Structures specification).

Source

pub fn description(&self) -> SMBiosString

Description

Descriptive information of the TPM device.

Source

pub fn characteristics(&self) -> Option<TpmDeviceCharacteristics>

Characteristics

TPM device characteristics information.

Source

pub fn oem_defined(&self) -> Option<u32>

OEM defined

OEM- or BIOS vendor-specific information

Trait Implementations§

Source§

impl Debug for SMBiosTpmDevice<'_>

Source§

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

Formats the value using the given formatter. Read more
Source§

impl<'a> SMBiosStruct<'a> for SMBiosTpmDevice<'a>

Source§

const STRUCT_TYPE: u8 = 43u8

The SMBIOS structure type Read more
Source§

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

Creates a new instance of the implementing SMBIOS type
Source§

fn parts(&self) -> &'a UndefinedStruct

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

impl Serialize for SMBiosTpmDevice<'_>

Source§

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

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

§

impl<'a> Freeze for SMBiosTpmDevice<'a>

§

impl<'a> RefUnwindSafe for SMBiosTpmDevice<'a>

§

impl<'a> Send for SMBiosTpmDevice<'a>

§

impl<'a> Sync for SMBiosTpmDevice<'a>

§

impl<'a> Unpin for SMBiosTpmDevice<'a>

§

impl<'a> UnwindSafe for SMBiosTpmDevice<'a>

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where 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 T
where 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, U> TryFrom<U> for T
where U: Into<T>,

Source§

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 T
where U: TryFrom<T>,

Source§

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.