pub trait Inverse { type Output; // Required method fn inverse(&self) -> Result<Self::Output, Error>; }
Unary operator for retrieving the inverse value.