pub trait PowAssign<Rhs = Self> {
// Required method
fn pow_assign(&mut self, rhs: Rhs);
}
Expand description
Exponentiation with assignment.
pub trait PowAssign<Rhs = Self> {
// Required method
fn pow_assign(&mut self, rhs: Rhs);
}
Exponentiation with assignment.