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: boolReturns true if this test is marked ignored.
Ignored tests, if run, are executed with the --ignored argument.
filter_match: FilterMatchWhether the test matches the provided test filter.
Only tests that match the filter are run.
Trait Implementations
sourceimpl Clone for RustTestCaseSummary
impl Clone for RustTestCaseSummary
sourcefn clone(&self) -> RustTestCaseSummary
fn clone(&self) -> RustTestCaseSummary
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for RustTestCaseSummary
impl Debug for RustTestCaseSummary
sourceimpl<'de> Deserialize<'de> for RustTestCaseSummary
impl<'de> Deserialize<'de> for RustTestCaseSummary
sourcefn 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
sourceimpl PartialEq<RustTestCaseSummary> for RustTestCaseSummary
impl PartialEq<RustTestCaseSummary> for RustTestCaseSummary
sourcefn eq(&self, other: &RustTestCaseSummary) -> bool
fn eq(&self, other: &RustTestCaseSummary) -> bool
sourceimpl Serialize for RustTestCaseSummary
impl Serialize for RustTestCaseSummary
impl Eq for RustTestCaseSummary
impl StructuralEq for RustTestCaseSummary
impl StructuralPartialEq for RustTestCaseSummary
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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more