pub trait IsNull {
type Inner;
const HAS_NULLS: bool;
// Required methods
fn is_null(&self) -> bool;
fn unwrap_inner(self) -> Self::Inner;
}
Required Associated Constants§
Required Associated Types§
Required Methods§
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.