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
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".