pub trait NullableBindValue<'a, V: SQLParam, Expected: DataType>: Sized {
// Required method
fn into_nullable_bind_value(self) -> V;
}Expand description
Converts an optional Rust value into a nullable dialect value.
Required Methods§
fn into_nullable_bind_value(self) -> V
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".