DivRound

Trait DivRound 

Source
pub trait DivRound {
    // Required method
    fn div_round(&self, rhs: &Self) -> Self;
}

Required Methods§

Source

fn div_round(&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.

Implementors§

Source§

impl<I> DivRound for EisenInt<I>
where I: Integer, for<'x> &'x I: IntOps<I>,

Source§

impl<I> DivRound for GaussInt<I>
where I: Integer, for<'x> &'x I: IntOps<I>,

Source§

impl<T> DivRound for T
where T: Integer, for<'x> &'x T: IntOps<T>,