pub trait NaNAware {
// Required method
fn is_nan(&self) -> bool;
}Expand description
Trait to handle NaN check for dtypes that don’t have it.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".