pub struct RustTestSuiteStatusSummary(pub Cow<'static, str>);
Expand description
Information about whether a test suite was listed or skipped.
This is part of RustTestSuiteSummary
.
Tuple Fields§
§0: Cow<'static, str>
Implementations§
source§impl RustTestSuiteStatusSummary
impl RustTestSuiteStatusSummary
sourcepub fn new(kind: impl Into<Cow<'static, str>>) -> Self
pub fn new(kind: impl Into<Cow<'static, str>>) -> Self
Creates a new RustNonTestBinaryKind
from a string.
sourcepub const fn new_const(kind: &'static str) -> Self
pub const fn new_const(kind: &'static str) -> Self
Creates a new RustNonTestBinaryKind
from a static string.
Trait Implementations§
source§impl Clone for RustTestSuiteStatusSummary
impl Clone for RustTestSuiteStatusSummary
source§fn clone(&self) -> RustTestSuiteStatusSummary
fn clone(&self) -> RustTestSuiteStatusSummary
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 RustTestSuiteStatusSummary
impl Debug for RustTestSuiteStatusSummary
source§impl<'de> Deserialize<'de> for RustTestSuiteStatusSummary
impl<'de> Deserialize<'de> for RustTestSuiteStatusSummary
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 Hash for RustTestSuiteStatusSummary
impl Hash for RustTestSuiteStatusSummary
source§impl Ord for RustTestSuiteStatusSummary
impl Ord for RustTestSuiteStatusSummary
source§fn cmp(&self, other: &RustTestSuiteStatusSummary) -> Ordering
fn cmp(&self, other: &RustTestSuiteStatusSummary) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<RustTestSuiteStatusSummary> for RustTestSuiteStatusSummary
impl PartialEq<RustTestSuiteStatusSummary> for RustTestSuiteStatusSummary
source§fn eq(&self, other: &RustTestSuiteStatusSummary) -> bool
fn eq(&self, other: &RustTestSuiteStatusSummary) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<RustTestSuiteStatusSummary> for RustTestSuiteStatusSummary
impl PartialOrd<RustTestSuiteStatusSummary> for RustTestSuiteStatusSummary
source§fn partial_cmp(&self, other: &RustTestSuiteStatusSummary) -> Option<Ordering>
fn partial_cmp(&self, other: &RustTestSuiteStatusSummary) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read more