pub trait RHS<T, V> {
// Required method
fn to_expr(self) -> Operand<T>;
}Expand description
Trait for types that can be used as the right-hand side of a comparison with a column of type V in table T.
This trait is implemented for Col<T, V> and various literal types.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".