pub trait IsNan: Copy {
// Required method
fn is_nan(self) -> bool;
}
Expand description
This trait is used to check if a number is NaN. For integer types, this will always return false.
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.