pub trait Signed:
Number
+ Neg<Output = Self>
+ From<i8> {
const MINUS_ONE: Self;
}
Expand description
Trait implemented by the primitive signed integer and floating point types.
Required Associated Constants§
Object Safety§
This trait is not object safe.