pub trait RootAssign<POW> {
// Required method
fn root_assign(&mut self, pow: POW);
}Expand description
Replaces a number with its $n$th root.
Required Methods§
fn root_assign(&mut self, pow: POW)
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".