Trait Calc

Source
pub trait Calc:
    Add<Output = Self>
    + Sub<Output = Self>
    + Mul<Output = Self>
    + Div<Output = Self>
    + Sized
    + PartialOrd
    + Abs
    + From<u32>
    + Clone
    + Copy {
    // Provided methods
    fn one() -> Self { ... }
    fn zero() -> Self { ... }
}

Provided Methods§

Source

fn one() -> Self

Source

fn zero() -> 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<T> Calc for T
where T: Add<Output = Self> + Sub<Output = Self> + Mul<Output = Self> + Div<Output = Self> + Sized + PartialOrd + Abs + From<u32> + Clone + Copy,