pub struct Params {Show 13 fields
pub target: CommonTriple,
pub test_content_dir: PathBuf,
pub filter: String,
pub downloaded_artifacts: Vec<KnownTestArtifacts>,
pub external_deps: VmmTestsExternalDeps,
pub prep_steps_variants: Vec<String>,
pub needs_test_igvm_agent_rpc_server: bool,
pub skip_vhd_prompt: bool,
pub nextest_profile: NextestProfile,
pub petri_params: PetriParams,
pub repetitions: NonZeroU64,
pub incubator_profile: Option<IncubatorProfileNameOrPath>,
pub done: WriteVar<SideEffect>,
}Fields§
§target: CommonTriple§test_content_dir: PathBufTest content dir with all artifacts and repo root
filter: String§downloaded_artifacts: Vec<KnownTestArtifacts>§external_deps: VmmTestsExternalDeps§prep_steps_variants: Vec<String>§needs_test_igvm_agent_rpc_server: bool§skip_vhd_prompt: boolSkip the interactive VHD download prompt
nextest_profile: NextestProfile§petri_params: PetriParams§repetitions: NonZeroU64§incubator_profile: Option<IncubatorProfileNameOrPath>Optional: incubator profile path. When set, tests run inside an emulated VM instead of on the host.
done: WriteVar<SideEffect>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Params
impl<'de> Deserialize<'de> for Params
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
Auto Trait Implementations§
impl Freeze for Params
impl RefUnwindSafe for Params
impl Send for Params
impl Sync for Params
impl Unpin for Params
impl UnsafeUnpin for Params
impl UnwindSafe for Params
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