pub trait IsNullable {
const IS_NULLABLE: bool;
}Expand description
Helper trait that is used to mark if a type could be NULL on the SQL side.
Required Associated Constants§
Sourceconst IS_NULLABLE: bool
const IS_NULLABLE: bool
Is this type nullable
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".