pub trait Pow { type Output; // Required method fn pow(self, p: u64) -> Self::Output; }
累乗
powの結果の型
pow
selfのp乗を求める。
self
p