pub trait SignedNumberOps<T: SignedNumber>: Neg<Output = Self> {
// Required methods
fn signum(a: Self) -> Self;
fn abs(a: Self) -> Self;
}
Expand description
operations applicable to signed types
Required 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.