Trait Magnitude

Source
pub trait Magnitude:
    Debug
    + RealArithmetic
    + MagSquare
    + UsefulReals {
    // Provided methods
    fn rrt(self, error: Self) -> Self { ... }
    fn mag1(self, error: Self) -> Self { ... }
}

Provided Methods§

Source

fn rrt(self, error: Self) -> Self

Source

fn mag1(self, error: 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 Magnitude for f32

Source§

impl Magnitude for f64

Implementors§

Source§

impl<R: Reals> Magnitude for Comp<R>