Trait Underflow

Source
pub trait Underflow: Num {
    // Required methods
    fn min_positive() -> Self;
    fn unit_underflow() -> Self;
}

Required Methods§

Source

fn min_positive() -> Self

Source

fn unit_underflow() -> 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 Underflow for f32

Source§

impl Underflow for f64

Implementors§