Sqrt

Trait Sqrt 

Source
pub trait Sqrt: Field {
    // Required method
    fn sqrt(&self) -> Option<Self>;
}

Required Methods§

Source

fn sqrt(&self) -> Option<Self>

Returns a square root of self if it exists.

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.

Implementors§