Skip to main content

ArithmeticSigned

Trait ArithmeticSigned 

Source
pub trait ArithmeticSigned: Arithmetic + Neg<Output = 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> ArithmeticSigned for T
where T: Arithmetic + Neg<Output = T>,