pub trait TrySub<Rhs = Self> { type Error; type Output; // Required method fn try_sub(self, other: Rhs) -> Result<Self::Output, Self::Error>; }
The try trait for Sub.
Sub
The type returned in the event of an error.
The type returned after performing the operation.
The fallible equivalent of Sub::sub.
Sub::sub