pub enum FilterMatch {
Matched,
NotMatched,
NotParsed,
}Variants§
Matched
Line matches every predicate.
NotMatched
Line parsed against the format but at least one predicate didn’t match.
NotParsed
Line didn’t parse against the format at all.
Trait Implementations§
Source§impl Debug for FilterMatch
impl Debug for FilterMatch
Source§impl PartialEq for FilterMatch
impl PartialEq for FilterMatch
Source§fn eq(&self, other: &FilterMatch) -> bool
fn eq(&self, other: &FilterMatch) -> bool
Tests for
self and other values to be equal, and is used by ==.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 UnsafeUnpin 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
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.