Skip to main content

CommonOps

Trait CommonOps 

Source
pub trait CommonOps {
    // Required methods
    fn eq<V: Into<Value>>(&self, val: V) -> Expr;
    fn ne<V: Into<Value>>(&self, val: V) -> Expr;
    fn in_list(&self, values: &[Value]) -> Expr;
    fn not_in(&self, values: &[Value]) -> Expr;
    fn is_null(&self) -> Expr;
    fn is_not_null(&self) -> Expr;
}

Required Methods§

Source

fn eq<V: Into<Value>>(&self, val: V) -> Expr

Source

fn ne<V: Into<Value>>(&self, val: V) -> Expr

Source

fn in_list(&self, values: &[Value]) -> Expr

Source

fn not_in(&self, values: &[Value]) -> Expr

Source

fn is_null(&self) -> Expr

Source

fn is_not_null(&self) -> Expr

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<T> CommonOps for Column<T>