pub trait FixedPowF: Fixed {
// Required method
fn powf(self, n: Self) -> Self;
}Expand description
Extension trait providing fixed-point exponentiation for fixed-point numbers.
This is only implemented for types that can represent numbers larger than 1.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.