Skip to main content

Request

Struct Request 

Source
pub struct Request {
    pub igvmfilegen: ReadVar<PathBuf>,
    pub manifest: ReadVar<PathBuf>,
    pub resources: ReadVar<BTreeMap<ResourceType, PathBuf>>,
    pub disable_secure_avic: bool,
    pub confidential_debug: bool,
    pub add_temp_snp_id_block: bool,
    pub igvm: WriteVar<IgvmOutput>,
}

Fields§

§igvmfilegen: ReadVar<PathBuf>

Path to igvmfilegen bin to use

§manifest: ReadVar<PathBuf>

IGVM manifest to build

§resources: ReadVar<BTreeMap<ResourceType, PathBuf>>

Resources required by the provided IGVM manifest

§disable_secure_avic: bool

Whether to patch the manifest to set secure_avic to disabled

§confidential_debug: bool

Whether to add the confidential debug flag to the measured OpenHCL command line, enabling confidential diagnostics on CVM builds even in release builds.

§add_temp_snp_id_block: bool

For SEV-SNP builds, add an SNP ID block signed by an ephemeral key (via igvmfilegen add-snp-id-block --manifest). This restores the pre-migration behavior for open-source builds, where every SNP IGVM carried a temporary-key ID block so that id_block_en = 1 at launch. Production pipelines set this to false and instead add an ID block signed with a real key out-of-band.

§igvm: WriteVar<IgvmOutput>

Output path of generated igvm file

Trait Implementations§

Source§

impl<'de> Deserialize<'de> for Request

Source§

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 IntoRequest for Request

Source§

impl Serialize for Request

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§

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.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> Same for T

Source§

type Output = T

Should always be Self
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.
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,