MixedCeil

Trait MixedCeil 

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

Required Methods§

Source

fn mixed_ceil(&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 MixedCeil for f32

Source§

fn mixed_ceil(&self) -> Self

Source§

impl MixedCeil for f64

Source§

fn mixed_ceil(&self) -> Self

Implementors§