pub trait PrivatePow<Y, N> {
type Output;
// Required method
fn private_pow(self, _: Y, _: N) -> Self::Output;
}pub trait PrivatePow<Y, N> {
type Output;
// Required method
fn private_pow(self, _: Y, _: N) -> Self::Output;
}