Struct nextest_metadata::RustBuildMetaSummary
source · pub struct RustBuildMetaSummary {
pub target_directory: Utf8PathBuf,
pub base_output_directories: BTreeSet<Utf8PathBuf>,
pub non_test_binaries: BTreeMap<String, BTreeSet<RustNonTestBinarySummary>>,
pub build_script_out_dirs: BTreeMap<String, Utf8PathBuf>,
pub linked_paths: BTreeSet<Utf8PathBuf>,
pub platforms: Option<BuildPlatformsSummary>,
pub target_platforms: Vec<PlatformSummary>,
pub target_platform: Option<String>,
}
Expand description
Rust metadata used for builds and test runs.
Fields§
§target_directory: Utf8PathBuf
The target directory for Rust artifacts.
base_output_directories: BTreeSet<Utf8PathBuf>
Base output directories, relative to the target directory.
non_test_binaries: BTreeMap<String, BTreeSet<RustNonTestBinarySummary>>
Information about non-test binaries, keyed by package ID.
build_script_out_dirs: BTreeMap<String, Utf8PathBuf>
Build script output directory, relative to the target directory and keyed by package ID. Only present for workspace packages that have build scripts.
Added in cargo-nextest 0.9.65.
linked_paths: BTreeSet<Utf8PathBuf>
Linked paths, relative to the target directory.
platforms: Option<BuildPlatformsSummary>
The build platforms used while compiling the Rust artifacts.
Added in cargo-nextest 0.9.72.
target_platforms: Vec<PlatformSummary>
The target platforms used while compiling the Rust artifacts.
Deprecated in favor of Self::platforms
; use that if available.
target_platform: Option<String>
A deprecated form of the target platform used for cross-compilation, if any.
Deprecated in favor of (in order) Self::platforms
and Self::target_platforms
; use
those if available.
Trait Implementations§
source§impl Clone for RustBuildMetaSummary
impl Clone for RustBuildMetaSummary
source§fn clone(&self) -> RustBuildMetaSummary
fn clone(&self) -> RustBuildMetaSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for RustBuildMetaSummary
impl Debug for RustBuildMetaSummary
source§impl Default for RustBuildMetaSummary
impl Default for RustBuildMetaSummary
source§fn default() -> RustBuildMetaSummary
fn default() -> RustBuildMetaSummary
source§impl<'de> Deserialize<'de> for RustBuildMetaSummary
impl<'de> Deserialize<'de> for RustBuildMetaSummary
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>,
source§impl PartialEq for RustBuildMetaSummary
impl PartialEq for RustBuildMetaSummary
source§impl Serialize for RustBuildMetaSummary
impl Serialize for RustBuildMetaSummary
impl Eq for RustBuildMetaSummary
impl StructuralPartialEq for RustBuildMetaSummary
Auto Trait Implementations§
impl Freeze for RustBuildMetaSummary
impl RefUnwindSafe for RustBuildMetaSummary
impl Send for RustBuildMetaSummary
impl Sync for RustBuildMetaSummary
impl Unpin for RustBuildMetaSummary
impl UnwindSafe for RustBuildMetaSummary
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)