Trait IntRoundings

Source
pub trait IntRoundings {
    // Required method
    fn nq_div_ceil(self, rhs: Self) -> Self;
}

Required Methods§

Source

fn nq_div_ceil(self, rhs: Self) -> 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 IntRoundings for i8

Source§

fn nq_div_ceil(self, rhs: Self) -> Self

Source§

impl IntRoundings for i16

Source§

fn nq_div_ceil(self, rhs: Self) -> Self

Source§

impl IntRoundings for i32

Source§

fn nq_div_ceil(self, rhs: Self) -> Self

Source§

impl IntRoundings for i64

Source§

fn nq_div_ceil(self, rhs: Self) -> Self

Source§

impl IntRoundings for i128

Source§

fn nq_div_ceil(self, rhs: Self) -> Self

Source§

impl IntRoundings for u8

Source§

fn nq_div_ceil(self, rhs: Self) -> Self

Source§

impl IntRoundings for u16

Source§

fn nq_div_ceil(self, rhs: Self) -> Self

Source§

impl IntRoundings for u32

Source§

fn nq_div_ceil(self, rhs: Self) -> Self

Source§

impl IntRoundings for u64

Source§

fn nq_div_ceil(self, rhs: Self) -> Self

Source§

impl IntRoundings for u128

Source§

fn nq_div_ceil(self, rhs: Self) -> Self

Implementors§