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

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Deserialize this value from the given Serde deserializer. Read more
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more
Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.