Struct nextest_metadata::RustTestCaseSummary
source · pub struct RustTestCaseSummary {
pub ignored: bool,
pub filter_match: FilterMatch,
}
Expand description
Serializable information about an individual test case within a Rust test suite.
Part of a RustTestSuiteSummary
.
Fields§
§ignored: bool
Returns true if this test is marked ignored.
Ignored tests, if run, are executed with the --ignored
argument.
filter_match: FilterMatch
Whether the test matches the provided test filter.
Only tests that match the filter are run.
Trait Implementations§
source§impl Clone for RustTestCaseSummary
impl Clone for RustTestCaseSummary
source§fn clone(&self) -> RustTestCaseSummary
fn clone(&self) -> RustTestCaseSummary
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 RustTestCaseSummary
impl Debug for RustTestCaseSummary
source§impl<'de> Deserialize<'de> for RustTestCaseSummary
impl<'de> Deserialize<'de> for RustTestCaseSummary
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<RustTestCaseSummary> for RustTestCaseSummary
impl PartialEq<RustTestCaseSummary> for RustTestCaseSummary
source§fn eq(&self, other: &RustTestCaseSummary) -> bool
fn eq(&self, other: &RustTestCaseSummary) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.