ExtendedNumOps

Trait ExtendedNumOps 

Source
pub trait ExtendedNumOps:
    Num
    + Clone
    + Copy
    + PartialOrd { }
Expand description

Required traits a number type must implement to be used with simplify.

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> ExtendedNumOps for T
where T: Num + Clone + Copy + PartialOrd,