pub trait NullValue: SqlType {
const NULL_VALUE: Value;
}Expand description
A base SQL type’s typed NULL — see Value::NullI32 etc. for why this
can’t just be a single untyped Value::Null.
Required Associated Constants§
const NULL_VALUE: Value
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".