#[doc(hidden)] trait GeneralFormat: PartialOrd {
// Required method
fn already_rounded_value_should_use_exponential(&self) -> bool;
}
Required Methods§
Sourcefn already_rounded_value_should_use_exponential(&self) -> bool
fn already_rounded_value_should_use_exponential(&self) -> bool
Determines if a value should use exponential based on its magnitude, given the precondition that it will not be rounded any further before it is displayed.
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.