pub trait Nullable:
PartialEq
+ Eq
+ Sized {
const NULL: Self;
// Provided method
fn is_null(&self) -> bool { ... }
}Required Associated Constants§
Provided Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".