Struct nextest_metadata::BinaryListSummary
source · pub struct BinaryListSummary {
pub rust_build_meta: RustBuildMetaSummary,
pub rust_binaries: BTreeMap<RustBinaryId, RustTestBinarySummary>,
}
Expand description
A serializable suite of test binaries.
Fields§
§rust_build_meta: RustBuildMetaSummary
Rust metadata used for builds and test runs.
rust_binaries: BTreeMap<RustBinaryId, RustTestBinarySummary>
The list of Rust test binaries (indexed by binary-id).
Trait Implementations§
source§impl Clone for BinaryListSummary
impl Clone for BinaryListSummary
source§fn clone(&self) -> BinaryListSummary
fn clone(&self) -> BinaryListSummary
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 BinaryListSummary
impl Debug for BinaryListSummary
source§impl<'de> Deserialize<'de> for BinaryListSummary
impl<'de> Deserialize<'de> for BinaryListSummary
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<BinaryListSummary> for BinaryListSummary
impl PartialEq<BinaryListSummary> for BinaryListSummary
source§fn eq(&self, other: &BinaryListSummary) -> bool
fn eq(&self, other: &BinaryListSummary) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.