Trait diesel::sql_types::IntoNotNullable
source · pub trait IntoNotNullable {
type NotNullable;
}Expand description
Converts a type which may or may not be nullable into its not nullable representation.
Required Associated Types§
sourcetype NotNullable
type NotNullable
The not nullable representation of this type.
For Nullable<T>, this will be T otherwise the type itself