pub trait IsntNonZeroU64Ext: Sealed {
// Required method
fn is_not_power_of_two(self) -> bool;
}Expand description
Extension for NonZero
Required Methods§
Sourcefn is_not_power_of_two(self) -> bool
fn is_not_power_of_two(self) -> bool
The negation of is_power_of_two
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".