Trait vortex_expr::FieldPathOperations

source ·
pub trait FieldPathOperations {
    // Required methods
    fn equal(&self, other: Value) -> Predicate;
    fn not_equal(&self, other: Value) -> Predicate;
    fn gt(&self, other: Value) -> Predicate;
    fn gte(&self, other: Value) -> Predicate;
    fn lt(&self, other: Value) -> Predicate;
    fn lte(&self, other: Value) -> Predicate;
}

Required Methods§

source

fn equal(&self, other: Value) -> Predicate

source

fn not_equal(&self, other: Value) -> Predicate

source

fn gt(&self, other: Value) -> Predicate

source

fn gte(&self, other: Value) -> Predicate

source

fn lt(&self, other: Value) -> Predicate

source

fn lte(&self, other: Value) -> Predicate

Implementations on Foreign Types§

source§

impl FieldPathOperations for FieldPath

source§

fn equal(&self, other: Value) -> Predicate

source§

fn not_equal(&self, other: Value) -> Predicate

source§

fn gt(&self, other: Value) -> Predicate

source§

fn gte(&self, other: Value) -> Predicate

source§

fn lt(&self, other: Value) -> Predicate

source§

fn lte(&self, other: Value) -> Predicate

Implementors§