pub struct Predicate(pub String, pub String, pub String);Expand description
A simple predicate enum
The first string is the name of the key/value pair
The second string is the operator that is used >=, <=, =, > or >
The third string is the the value that should be evaluated with
Tuple Fields§
§0: String§1: String§2: StringTrait Implementations§
Auto Trait Implementations§
impl Freeze for Predicate
impl RefUnwindSafe for Predicate
impl Send for Predicate
impl Sync for Predicate
impl Unpin for Predicate
impl UnwindSafe for Predicate
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