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§

The not nullable representation of this type.

For Nullable<T>, this will be T otherwise the type itself

Implementors§