pub trait TryNeg { type Error; type Output; // Required method fn try_neg(self) -> Result<Self::Output, Self::Error>; }
The try trait for Neg.
Neg
The type returned in the event of an error.
The type returned after performing the operation.
The fallible equivalent of Neg::neg.
Neg::neg