pub struct PlatformAttestationData {
pub host_attestation_settings: HostAttestationSettings,
pub agent_data: Option<Vec<u8>>,
pub guest_secret_key: Option<Vec<u8>>,
}
Expand description
The return values of initialize_platform_security
.
Fields§
§host_attestation_settings: HostAttestationSettings
The instance of HostAttestationSettings
.
agent_data: Option<Vec<u8>>
The agent data used by an attestation request.
guest_secret_key: Option<Vec<u8>>
The guest secret key.
Auto Trait Implementations§
impl Freeze for PlatformAttestationData
impl RefUnwindSafe for PlatformAttestationData
impl Send for PlatformAttestationData
impl Sync for PlatformAttestationData
impl Unpin for PlatformAttestationData
impl UnwindSafe for PlatformAttestationData
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