pub trait CmdOperation {
// Required method
fn eq(&self, value: impl Into<CborValue>) -> CmdCondition;
}Expand description
Build conditions from a typed column without going through the expression machinery (command backends filter via CLI flags, not SQL).
Required Methods§
Sourcefn eq(&self, value: impl Into<CborValue>) -> CmdCondition
fn eq(&self, value: impl Into<CborValue>) -> CmdCondition
column == value.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".