pub trait FloatWithPrecision {
// Required methods
fn round_with_precision(&self, precision: usize) -> Self;
fn floor_with_precision(&self, precision: usize) -> Self;
fn ceil_with_precision(&self, precision: usize) -> Self;
}
Required Methods§
fn round_with_precision(&self, precision: usize) -> Self
fn floor_with_precision(&self, precision: usize) -> Self
fn ceil_with_precision(&self, precision: usize) -> Self
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.