Struct nextest_metadata::RustTestCaseSummary [−][src]
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
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
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for RustTestCaseSummary
impl Send for RustTestCaseSummary
impl Sync for RustTestCaseSummary
impl Unpin for RustTestCaseSummary
impl UnwindSafe for RustTestCaseSummary
Blanket Implementations
Mutably borrows from an owned value. Read more