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 linked_paths: BTreeSet<Utf8PathBuf>,
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.
linked_paths: BTreeSet<Utf8PathBuf>
Linked paths, relative to the target directory.
target_platforms: Vec<PlatformSummary>
The target platforms used while compiling the Rust artifacts.
target_platform: Option<String>
A deprecated form of the target platform used for cross-compilation, if any.
This is no longer used by nextest, but is maintained for compatibility with older versions which used to generate this.
Trait Implementations§
source§impl Clone for RustBuildMetaSummary
impl Clone for RustBuildMetaSummary
source§fn clone(&self) -> RustBuildMetaSummary
fn clone(&self) -> RustBuildMetaSummary
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 RustBuildMetaSummary
impl Debug for 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>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq<RustBuildMetaSummary> for RustBuildMetaSummary
impl PartialEq<RustBuildMetaSummary> for RustBuildMetaSummary
source§fn eq(&self, other: &RustBuildMetaSummary) -> bool
fn eq(&self, other: &RustBuildMetaSummary) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.