pub trait Powf<T> {
type Output;
// Required method
fn powf(self, rhs: T) -> Self::Output;
}Expand description
This trait is used to specify the return type of the Powf::powf() function.
Required Associated Types§
Sourcetype Output
type Output
The resulting type after applying Powf::powf().
Required Methods§
Sourcefn powf(self, rhs: T) -> Self::Output
fn powf(self, rhs: T) -> Self::Output
See f64::powf() for more details.