peroxide::traits::float

Trait FloatWithPrecision

Source
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§

Source

fn round_with_precision(&self, precision: usize) -> Self

Source

fn floor_with_precision(&self, precision: usize) -> Self

Source

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.

Implementations on Foreign Types§

Source§

impl FloatWithPrecision for f32

Source§

fn round_with_precision(&self, precision: usize) -> Self

Source§

fn floor_with_precision(&self, precision: usize) -> Self

Source§

fn ceil_with_precision(&self, precision: usize) -> Self

Source§

impl FloatWithPrecision for f64

Source§

fn round_with_precision(&self, precision: usize) -> Self

Source§

fn floor_with_precision(&self, precision: usize) -> Self

Source§

fn ceil_with_precision(&self, precision: usize) -> Self

Implementors§