Skip to main content

MulCeil

Trait MulCeil 

Source
pub trait MulCeil<Rhs = Self> {
    type Output;

    // Required method
    fn mul_ceil(self, rhs: Rhs) -> Self::Output;
}

Required Associated Types§

Required Methods§

Source

fn mul_ceil(self, rhs: Rhs) -> Self::Output

Implementations on Foreign Types§

Source§

impl MulCeil for f64

Source§

type Output = f64

Source§

fn mul_ceil(self, rhs: f64) -> f64

Source§

impl MulCeil<f32> for f64

Source§

type Output = f64

Source§

fn mul_ceil(self, rhs: f32) -> Self::Output

Source§

impl MulCeil<f64> for f32

Source§

type Output = f64

Source§

fn mul_ceil(self, rhs: f64) -> Self::Output

Source§

impl MulCeil<f64> for i8

Source§

type Output = f64

Source§

fn mul_ceil(self, rhs: f64) -> Self::Output

Source§

impl MulCeil<f64> for i16

Source§

type Output = f64

Source§

fn mul_ceil(self, rhs: f64) -> Self::Output

Source§

impl MulCeil<f64> for i32

Source§

type Output = f64

Source§

fn mul_ceil(self, rhs: f64) -> Self::Output

Source§

impl MulCeil<f64> for u8

Source§

type Output = f64

Source§

fn mul_ceil(self, rhs: f64) -> Self::Output

Source§

impl MulCeil<f64> for u16

Source§

type Output = f64

Source§

fn mul_ceil(self, rhs: f64) -> Self::Output

Source§

impl MulCeil<f64> for u32

Source§

type Output = f64

Source§

fn mul_ceil(self, rhs: f64) -> Self::Output

Source§

impl MulCeil<i8> for f64

Source§

type Output = f64

Source§

fn mul_ceil(self, rhs: i8) -> Self::Output

Source§

impl MulCeil<i16> for f64

Source§

type Output = f64

Source§

fn mul_ceil(self, rhs: i16) -> Self::Output

Source§

impl MulCeil<i32> for f64

Source§

type Output = f64

Source§

fn mul_ceil(self, rhs: i32) -> Self::Output

Source§

impl MulCeil<u8> for f64

Source§

type Output = f64

Source§

fn mul_ceil(self, rhs: u8) -> Self::Output

Source§

impl MulCeil<u16> for f64

Source§

type Output = f64

Source§

fn mul_ceil(self, rhs: u16) -> Self::Output

Source§

impl MulCeil<u32> for f64

Source§

type Output = f64

Source§

fn mul_ceil(self, rhs: u32) -> Self::Output

Implementors§