pub trait WrapNullable<T> {
type Output;
}Expand description
Wraps a Rust type in Option<T> when nullable.
Required Associated Types§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".