pub trait Inv { type Output; // Required method fn inv(self) -> Self::Output; }
乗法の逆元
invの結果の型
inv
selfの乗法の逆元を求める。
self