pub trait F64Extras {
// Required methods
fn round_to(self, decimals: u32) -> f64;
fn round_2(self) -> f64;
fn round_4(self) -> f64;
}pub trait F64Extras {
// Required methods
fn round_to(self, decimals: u32) -> f64;
fn round_2(self) -> f64;
fn round_4(self) -> f64;
}