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 for RustTestCaseSummary
impl PartialEq for RustTestCaseSummary
source§impl Serialize for RustTestCaseSummary
impl Serialize for RustTestCaseSummary
impl Eq for RustTestCaseSummary
impl StructuralPartialEq for RustTestCaseSummary
Auto Trait Implementations§
impl Freeze for RustTestCaseSummary
impl RefUnwindSafe for RustTestCaseSummary
impl Send for RustTestCaseSummary
impl Sync for RustTestCaseSummary
impl Unpin for RustTestCaseSummary
impl UnwindSafe for RustTestCaseSummary
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)