Cbrt

Trait Cbrt 

Source
pub trait Cbrt {
    // Required method
    fn cbrt(self) -> Self;
}
Expand description

Cube root function

Required Methods§

Source

fn cbrt(self) -> Self

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.

Implementations on Foreign Types§

Source§

impl Cbrt for f32

Source§

fn cbrt(self) -> Self

Source§

impl Cbrt for f64

Source§

fn cbrt(self) -> Self

Implementors§