pub struct AttestationVmConfig {
pub current_time: Option<i64>,
pub root_cert_thumbprint: String,
pub console_enabled: bool,
pub secure_boot: bool,
pub tpm_enabled: bool,
pub tpm_persisted: bool,
pub vm_unique_id: String,
}
Expand description
VM configuration to be included in the RuntimeClaims
.
Fields§
§current_time: Option<i64>
Time stamp
root_cert_thumbprint: String
Base64-encoded hash of the provisioning cert
console_enabled: bool
Whether the serial console is enabled
secure_boot: bool
Whether secure boot is enabled
tpm_enabled: bool
Whether the TPM is enabled
tpm_persisted: bool
Whether the TPM states is persisted
vm_unique_id: String
VM id
Trait Implementations§
Source§impl Clone for AttestationVmConfig
impl Clone for AttestationVmConfig
Source§fn clone(&self) -> AttestationVmConfig
fn clone(&self) -> AttestationVmConfig
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AttestationVmConfig
impl Debug for AttestationVmConfig
Source§impl DefaultEncoding for AttestationVmConfig
impl DefaultEncoding for AttestationVmConfig
Source§type Encoding = TableEncoder
type Encoding = TableEncoder
The encoding to use for the serialization. Read more
Source§impl<'de> Deserialize<'de> for AttestationVmConfig
impl<'de> Deserialize<'de> for AttestationVmConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for AttestationVmConfig
impl Serialize for AttestationVmConfig
Source§impl<'encoding> StructDecodeMetadata<'encoding, Resource> for AttestationVmConfig
impl<'encoding> StructDecodeMetadata<'encoding, Resource> for AttestationVmConfig
Source§const DECODERS: &'static [ErasedDecoderEntry]
const DECODERS: &'static [ErasedDecoderEntry]
The list of decoder vtables.
Source§impl StructEncodeMetadata<Resource> for AttestationVmConfig
impl StructEncodeMetadata<Resource> for AttestationVmConfig
Source§const ENCODERS: &'static [ErasedEncoderEntry]
const ENCODERS: &'static [ErasedEncoderEntry]
The list of encoder vtables.
Auto Trait Implementations§
impl Freeze for AttestationVmConfig
impl RefUnwindSafe for AttestationVmConfig
impl Send for AttestationVmConfig
impl Sync for AttestationVmConfig
impl Unpin for AttestationVmConfig
impl UnwindSafe for AttestationVmConfig
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> MeshField for Twhere
T: DefaultEncoding,
<T as DefaultEncoding>::Encoding: FieldEncode<T, Resource> + for<'a> FieldDecode<'a, T, Resource> + Send + Sync,
impl<T> MeshField for Twhere
T: DefaultEncoding,
<T as DefaultEncoding>::Encoding: FieldEncode<T, Resource> + for<'a> FieldDecode<'a, T, Resource> + Send + Sync,
type Encoding = <T as DefaultEncoding>::Encoding
Source§impl<T> MeshPayload for Twhere
T: DefaultEncoding + Any + Send + 'static,
<T as DefaultEncoding>::Encoding: MessageEncode<T, Resource> + for<'a> MessageDecode<'a, T, Resource> + FieldEncode<T, Resource> + for<'a> FieldDecode<'a, T, Resource> + Send + Sync,
impl<T> MeshPayload for Twhere
T: DefaultEncoding + Any + Send + 'static,
<T as DefaultEncoding>::Encoding: MessageEncode<T, Resource> + for<'a> MessageDecode<'a, T, Resource> + FieldEncode<T, Resource> + for<'a> FieldDecode<'a, T, Resource> + Send + Sync,
type Encoding = <T as DefaultEncoding>::Encoding
Source§impl<T> SerializeMessage for Twhere
T: 'static + MeshPayload + Send,
impl<T> SerializeMessage for Twhere
T: 'static + MeshPayload + Send,
Source§fn compute_message_size(&mut self, sizer: MessageSizer<'_>)
fn compute_message_size(&mut self, sizer: MessageSizer<'_>)
Computes the message size, as in
MessageEncode::compute_message_size
.Source§fn write_message(self, writer: MessageWriter<'_, '_, Resource>)
fn write_message(self, writer: MessageWriter<'_, '_, Resource>)
Writes the message, as in
MessageEncode::write_message
.Source§fn extract(self) -> <T as SerializeMessage>::Concrete
fn extract(self) -> <T as SerializeMessage>::Concrete
Extract the concrete message.