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
This test does not match this filter.
Fields
§
reason: MismatchReasonDescribes the reason this filter isn’t matched.
Implementations§
Trait Implementations§
Source§impl Clone for FilterMatch
 
impl Clone for FilterMatch
Source§fn clone(&self) -> FilterMatch
 
fn clone(&self) -> FilterMatch
Returns a duplicate 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 for FilterMatch
 
impl PartialEq for FilterMatch
Source§impl Serialize for FilterMatch
 
impl Serialize for FilterMatch
impl Copy for FilterMatch
impl Eq for FilterMatch
impl StructuralPartialEq for FilterMatch
Auto Trait Implementations§
impl Freeze for FilterMatch
impl RefUnwindSafe for FilterMatch
impl Send for FilterMatch
impl Sync for FilterMatch
impl Unpin for FilterMatch
impl UnwindSafe for FilterMatch
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