pub trait CsvOperation: Expressive<AnyCsvType> {
// Provided methods
fn eq(&self, value: impl Expressive<AnyCsvType>) -> Expression<AnyCsvType>
where Self: Sized { ... }
fn in_(&self, values: impl Expressive<AnyCsvType>) -> Expression<AnyCsvType>
where Self: Sized { ... }
}Expand description
CSV-specific comparison operations.
Blanket-implemented for all Expressive<AnyCsvType> so columns, fields,
and expressions all get eq, in_, etc. for free.
Provided Methods§
Sourcefn eq(&self, value: impl Expressive<AnyCsvType>) -> Expression<AnyCsvType>where
Self: Sized,
fn eq(&self, value: impl Expressive<AnyCsvType>) -> Expression<AnyCsvType>where
Self: Sized,
field = value
Sourcefn in_(&self, values: impl Expressive<AnyCsvType>) -> Expression<AnyCsvType>where
Self: Sized,
fn in_(&self, values: impl Expressive<AnyCsvType>) -> Expression<AnyCsvType>where
Self: Sized,
field IN (values_expression)
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".