pub trait IntoNullable {
    type Nullable;
}
Expand description

Converts a type which may or may not be nullable into its nullable representation.

Required Associated Types§

The nullable representation of this type.

For all types except Nullable, this will be Nullable<Self>.

Implementations on Foreign Types§

Implementors§