Trait SvdFloat

Source
pub trait SvdFloat: FloatOpsTS {
    // Required methods
    fn eps() -> Self;
    fn eps34() -> Self;
    fn compare(a: Self, b: Self) -> bool;
}

Required Methods§

Source

fn eps() -> Self

Source

fn eps34() -> Self

Source

fn compare(a: Self, b: Self) -> bool

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 SvdFloat for f32

Source§

fn eps() -> Self

Source§

fn eps34() -> Self

Source§

fn compare(a: Self, b: Self) -> bool

Source§

impl SvdFloat for f64

Source§

fn eps() -> Self

Source§

fn eps34() -> Self

Source§

fn compare(a: Self, b: Self) -> bool

Implementors§