pub struct HostTpmVersionEventDetails {
pub host_tpm_event_details_: HostTpmEventDetails,
pub version: Vec<u8>,
}Expand description
Details of a Trusted Platform Module (TPM) event recording the measurement of a module version.
Since: vSphere API Release 8.0.0.1
§How to access
HostSystem::query_tpm_attestation_report().tpm_events[*].event_details→HostTpmVersionEventDetails
Fields§
§host_tpm_event_details_: HostTpmEventDetails§version: Vec<u8>A packed structure containing the module version.
Trait Implementations§
Source§impl Debug for HostTpmVersionEventDetails
impl Debug for HostTpmVersionEventDetails
Source§impl Deref for HostTpmVersionEventDetails
impl Deref for HostTpmVersionEventDetails
Source§impl HostTpmEventDetailsTrait for HostTpmVersionEventDetails
impl HostTpmEventDetailsTrait for HostTpmVersionEventDetails
Source§fn get_host_tpm_event_details(&self) -> &HostTpmEventDetails
fn get_host_tpm_event_details(&self) -> &HostTpmEventDetails
Get a reference to the HostTpmEventDetails parent struct
Source§fn get_host_tpm_event_details_mut(&mut self) -> &mut HostTpmEventDetails
fn get_host_tpm_event_details_mut(&mut self) -> &mut HostTpmEventDetails
Get a mutable reference to the HostTpmEventDetails parent struct
Source§impl VimObjectTrait for HostTpmVersionEventDetails
impl VimObjectTrait for HostTpmVersionEventDetails
fn as_vim_object_ref<'a>(&'a self) -> &'a dyn VimObjectTrait
fn data_type(&self) -> StructType
impl DataObjectTrait for HostTpmVersionEventDetails
Auto Trait Implementations§
impl Freeze for HostTpmVersionEventDetails
impl RefUnwindSafe for HostTpmVersionEventDetails
impl Send for HostTpmVersionEventDetails
impl Sync for HostTpmVersionEventDetails
impl Unpin for HostTpmVersionEventDetails
impl UnsafeUnpin for HostTpmVersionEventDetails
impl UnwindSafe for HostTpmVersionEventDetails
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more