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§
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.