pub trait ScalarListCompare {
    // Required methods
    fn contains_element<T>(&self, value: T) -> Filter
       where T: Into<ConditionValue>;
    fn contains_every_element<T>(&self, filter: T) -> Filter
       where T: Into<ConditionListValue>;
    fn contains_some_element<T>(&self, filter: T) -> Filter
       where T: Into<ConditionListValue>;
    fn is_empty_list(&self, b: bool) -> Filter;
}
Expand description

Comparison methods for scalar list fields.

Required Methods§

source

fn contains_element<T>(&self, value: T) -> Filterwhere T: Into<ConditionValue>,

source

fn contains_every_element<T>(&self, filter: T) -> Filterwhere T: Into<ConditionListValue>,

source

fn contains_some_element<T>(&self, filter: T) -> Filterwhere T: Into<ConditionListValue>,

source

fn is_empty_list(&self, b: bool) -> Filter

Object Safety§

This trait is not object safe.

Implementors§