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: String
The name of this package in the workspace.
binary: RustTestBinarySummary
The binary within the package.
cwd: Utf8PathBuf
The working directory that tests within this package are run in.
status: RustTestSuiteStatusSummary
Status 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 for RustTestSuiteSummary
impl PartialEq for RustTestSuiteSummary
source§impl Serialize for RustTestSuiteSummary
impl Serialize for RustTestSuiteSummary
impl Eq for RustTestSuiteSummary
impl StructuralPartialEq for RustTestSuiteSummary
Auto Trait Implementations§
impl Freeze for RustTestSuiteSummary
impl RefUnwindSafe for RustTestSuiteSummary
impl Send for RustTestSuiteSummary
impl Sync for RustTestSuiteSummary
impl Unpin for RustTestSuiteSummary
impl UnwindSafe for RustTestSuiteSummary
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
)