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: MismatchReasonDescribes the reason this filter isn’t matched.
This test does not match this filter.
Implementations
sourceimpl FilterMatch
impl FilterMatch
Trait Implementations
sourceimpl Clone for FilterMatch
impl Clone for FilterMatch
sourcefn clone(&self) -> FilterMatch
fn clone(&self) -> FilterMatch
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for FilterMatch
impl Debug for FilterMatch
sourceimpl<'de> Deserialize<'de> for FilterMatch
impl<'de> Deserialize<'de> for FilterMatch
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<FilterMatch> for FilterMatch
impl PartialEq<FilterMatch> for FilterMatch
sourcefn eq(&self, other: &FilterMatch) -> bool
fn eq(&self, other: &FilterMatch) -> bool
sourceimpl Serialize for FilterMatch
impl Serialize for FilterMatch
impl Copy for FilterMatch
impl Eq for FilterMatch
impl StructuralEq for FilterMatch
impl StructuralPartialEq for FilterMatch
Auto Trait Implementations
impl RefUnwindSafe for FilterMatch
impl Send for FilterMatch
impl Sync for FilterMatch
impl Unpin for FilterMatch
impl UnwindSafe for FilterMatch
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