pub trait InExpression {
type SqlType: SqlType;
// Required methods
fn is_empty(&self) -> bool;
fn is_array(&self) -> bool;
}Available on crate feature
i-implement-a-third-party-backend-and-opt-into-breaking-changes only.Expand description
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".