pub trait Nullability: Sealed {
type Item<T>;
type Collection<T, Buffer: BufferType>;
const NULLABLE: bool;
}Expand description
Nullability trait for nullable and non-nullable type constructors
Required Associated Constants§
Required Associated Types§
Sourcetype Collection<T, Buffer: BufferType>
type Collection<T, Buffer: BufferType>
Constructor for nullable and non-nullable collections.
Generic over a collection T and a BufferType.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.