Enum MatchPredicate
pub enum MatchPredicate {
Compare {
op: CmpOp,
value: CmpValue,
},
Contains(String),
NotContains(String),
Regex(String),
}Variants§
Trait Implementations§
§impl Clone for MatchPredicate
impl Clone for MatchPredicate
§fn clone(&self) -> MatchPredicate
fn clone(&self) -> MatchPredicate
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 more§impl Debug for MatchPredicate
impl Debug for MatchPredicate
§impl PartialEq for MatchPredicate
impl PartialEq for MatchPredicate
impl StructuralPartialEq for MatchPredicate
Auto Trait Implementations§
impl Freeze for MatchPredicate
impl RefUnwindSafe for MatchPredicate
impl Send for MatchPredicate
impl Sync for MatchPredicate
impl Unpin for MatchPredicate
impl UnsafeUnpin for MatchPredicate
impl UnwindSafe for MatchPredicate
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