MixedFloor

Trait MixedFloor 

Source
pub trait MixedFloor {
    // Required method
    fn mixed_floor(&self) -> Self;
}

Required Methods§

Source

fn mixed_floor(&self) -> Self

Round Self up to the closest nteger.

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 MixedFloor for f32

Source§

fn mixed_floor(&self) -> Self

Source§

impl MixedFloor for f64

Source§

fn mixed_floor(&self) -> Self

Implementors§