pub trait IsNaN {
// Required method
fn is_nan_(&self) -> bool;
}Expand description
This trait provides the interface for the function used to check if a value is NaN.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".