Enum nextest_metadata::FilterMatch
source · pub enum FilterMatch {
Matches,
Mismatch {
reason: MismatchReason,
},
}
Expand description
An enum describing whether a test matches a filter.
Variants§
Matches
This test matches this filter.
Mismatch
Fields
§
reason: MismatchReason
Describes the reason this filter isn’t matched.
This test does not match this filter.
Implementations§
Trait Implementations§
source§impl Clone for FilterMatch
impl Clone for FilterMatch
source§fn clone(&self) -> FilterMatch
fn clone(&self) -> FilterMatch
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 FilterMatch
impl Debug for FilterMatch
source§impl<'de> Deserialize<'de> for FilterMatch
impl<'de> Deserialize<'de> for FilterMatch
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<FilterMatch> for FilterMatch
impl PartialEq<FilterMatch> for FilterMatch
source§fn eq(&self, other: &FilterMatch) -> bool
fn eq(&self, other: &FilterMatch) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.