pub trait NthRoot {
    // Required method
    fn nth_root(self, n: u32) -> Self;
}

Required Methods§

source

fn nth_root(self, n: u32) -> Self

Implementors§