Struct nextest_metadata::RustTestSuiteSummary
source · pub struct RustTestSuiteSummary {
pub package_name: String,
pub binary: RustTestBinarySummary,
pub cwd: Utf8PathBuf,
pub status: RustTestSuiteStatusSummary,
pub test_cases: BTreeMap<String, RustTestCaseSummary>,
}Expand description
A serializable suite of tests within a Rust test binary.
Part of a TestListSummary.
Fields§
§package_name: StringThe name of this package in the workspace.
binary: RustTestBinarySummaryThe binary within the package.
cwd: Utf8PathBufThe working directory that tests within this package are run in.
status: RustTestSuiteStatusSummaryStatus of this test suite.
Introduced in cargo-nextest 0.9.25. Older versions always imply
LISTED.
test_cases: BTreeMap<String, RustTestCaseSummary>Test cases within this test suite.
Trait Implementations§
source§impl Clone for RustTestSuiteSummary
impl Clone for RustTestSuiteSummary
source§fn clone(&self) -> RustTestSuiteSummary
fn clone(&self) -> RustTestSuiteSummary
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 RustTestSuiteSummary
impl Debug for RustTestSuiteSummary
source§impl<'de> Deserialize<'de> for RustTestSuiteSummary
impl<'de> Deserialize<'de> for RustTestSuiteSummary
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<RustTestSuiteSummary> for RustTestSuiteSummary
impl PartialEq<RustTestSuiteSummary> for RustTestSuiteSummary
source§fn eq(&self, other: &RustTestSuiteSummary) -> bool
fn eq(&self, other: &RustTestSuiteSummary) -> bool
This method tests for
self and other values to be equal, and is used
by ==.