@@ -89,6 +89,7 @@ pub enum CompareOp {
Equals,
AtLeast,
MoreThan,
+ NotEqual
}
impl CompareOp {
@@ -99,6 +100,7 @@ impl CompareOp {
Self::Equals => "=",
Self::AtLeast => ">=",
Self::MoreThan => ">",
+ Self::NotEqual => "!=",
@@ -44,6 +44,7 @@ where
},
)
+
fn result(self) -> Result<Option<WithID<T>>, crate::Error>
where
Self: Sized,
@@ -66,6 +67,7 @@ where
fn results(self) -> Result<Vec<WithID<T>>, crate::Error>