Trait query_structure::filter::ScalarListCompare
source · 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§
fn contains_element<T>(&self, value: T) -> Filterwhere T: Into<ConditionValue>,
fn contains_every_element<T>(&self, filter: T) -> Filterwhere T: Into<ConditionListValue>,
fn contains_some_element<T>(&self, filter: T) -> Filterwhere T: Into<ConditionListValue>,
fn is_empty_list(&self, b: bool) -> Filter
Object Safety§
This trait is not object safe.