Skip to main content

Request

pub struct Request {
    pub incubator: ReadVar<IncubatorOutput>,
    pub incubator_profile: IncubatorProfileNameOrPath,
    pub kernel: Option<ReadVar<PathBuf>>,
    pub initrd: Option<ReadVar<PathBuf>>,
    pub repo_root: ReadVar<PathBuf>,
    pub test_content_dir: ReadVar<PathBuf>,
    pub extra_share_paths: Vec<ReadVar<PathBuf>>,
    pub extra_env: Option<ReadVar<BTreeMap<String, String>>>,
    pub qemu_binary: Option<ReadVar<PathBuf>>,
    pub target: Triple,
    pub nextest_env: WriteVar<BTreeMap<String, String>>,
}

Fields§

§incubator: ReadVar<IncubatorOutput>

Path to the incubator binary.

§incubator_profile: IncubatorProfileNameOrPath

Path to the incubator profile TOML file.

§kernel: Option<ReadVar<PathBuf>>

Path to the guest kernel image. If omitted, incubator auto-detects it.

§initrd: Option<ReadVar<PathBuf>>

Path to the base initrd. If omitted, incubator auto-detects it.

§repo_root: ReadVar<PathBuf>

Path to the OpenVMM repo root. Must contain any repo-relative paths referenced by the runner’s environment (e.g. NEXTEST_WORKSPACE_ROOT, CARGO_MANIFEST_DIR) so they fall under the computed incubator share root and translate correctly into the guest.

§test_content_dir: ReadVar<PathBuf>

Directory containing VMM test runtime artifacts and test outputs.

§extra_share_paths: Vec<ReadVar<PathBuf>>

Additional host paths that must be visible in the incubator share.

§extra_env: Option<ReadVar<BTreeMap<String, String>>>

Additional environment variables used to discover path roots that must be visible in the incubator share.

§qemu_binary: Option<ReadVar<PathBuf>>

Path to the QEMU binary (overrides the profile’s binary setting).

§target: Triple

The test target triple, used to name the CARGO_TARGET_*_RUNNER environment variable.

§nextest_env: WriteVar<BTreeMap<String, String>>

The complete cargo-nextest environment: the input extra_env plus the INCUBATOR_* configuration, TMPDIR, the CARGO_TARGET_*_RUNNER pointer, and the INCUBATOR_ENV policy.

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>,