pub trait Abs { // Required method fn abs(self) -> Self; }
Represents a number that can return an absolute value.
Returns the absolute value.