peroxide::traits::num

Trait Real

Source
pub trait Real:
    PowOps
    + TrigOps
    + ExpLogOps
    + Neg
    + PartialOrd
    + Add<Output = Self>
    + Mul<Output = Self>
    + Div<Output = Self>
    + Sub<Output = Self>
    + Add<f64, Output = Self>
    + Mul<f64, Output = Self>
    + Div<f64, Output = Self>
    + Sub<f64, Output = Self>
    + Clone
    + Copy {
    // Required methods
    fn to_f64(&self) -> f64;
    fn from_f64(f: f64) -> Self;
    fn to_ad(&self) -> AD;
}

Required Methods§

Source

fn to_f64(&self) -> f64

Source

fn from_f64(f: f64) -> Self

Source

fn to_ad(&self) -> AD

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 Real for f64

Source§

fn to_f64(&self) -> f64

Source§

fn from_f64(f: f64) -> Self

Source§

fn to_ad(&self) -> AD

Implementors§

Source§

impl Real for AD