numfmt

Trait Numeric

Source
pub trait Numeric {
    // Required method
    fn to_f64(&self) -> f64;

    // Provided methods
    fn is_nan(&self) -> bool { ... }
    fn is_negative(&self) -> bool { ... }
    fn is_infinite(&self) -> bool { ... }
    fn is_zero(&self) -> bool { ... }
}
Expand description

An object is representable as a 64-bit floating point number.

Required Methods§

Source

fn to_f64(&self) -> f64

Perform the conversion.

Provided Methods§

Source

fn is_nan(&self) -> bool

Return if the number is NaN.

The default implementation converts to f64 and performs the test.

Source

fn is_negative(&self) -> bool

Return if the number is negative.

The default implementation converts to f64 and performs the test.

Source

fn is_infinite(&self) -> bool

Return if the number is infinite.

The default implementation converts to f64 and performs the test.

Source

fn is_zero(&self) -> bool

Return if the number is zero.

The default implementation converts to f64 and performs the test.

Implementations on Foreign Types§

Source§

impl Numeric for f32

Source§

fn to_f64(&self) -> f64

Source§

fn is_nan(&self) -> bool

Source§

fn is_negative(&self) -> bool

Source§

fn is_infinite(&self) -> bool

Source§

fn is_zero(&self) -> bool

Source§

impl Numeric for f64

Source§

fn to_f64(&self) -> f64

Source§

fn is_nan(&self) -> bool

Source§

fn is_negative(&self) -> bool

Source§

fn is_infinite(&self) -> bool

Source§

fn is_zero(&self) -> bool

Source§

impl Numeric for i8

Source§

fn to_f64(&self) -> f64

Source§

fn is_nan(&self) -> bool

Source§

fn is_negative(&self) -> bool

Source§

fn is_infinite(&self) -> bool

Source§

fn is_zero(&self) -> bool

Source§

impl Numeric for i16

Source§

fn to_f64(&self) -> f64

Source§

fn is_nan(&self) -> bool

Source§

fn is_negative(&self) -> bool

Source§

fn is_infinite(&self) -> bool

Source§

fn is_zero(&self) -> bool

Source§

impl Numeric for i32

Source§

fn to_f64(&self) -> f64

Source§

fn is_nan(&self) -> bool

Source§

fn is_negative(&self) -> bool

Source§

fn is_infinite(&self) -> bool

Source§

fn is_zero(&self) -> bool

Source§

impl Numeric for i64

Source§

fn to_f64(&self) -> f64

Source§

fn is_nan(&self) -> bool

Source§

fn is_negative(&self) -> bool

Source§

fn is_infinite(&self) -> bool

Source§

fn is_zero(&self) -> bool

Source§

impl Numeric for i128

Source§

fn to_f64(&self) -> f64

Source§

fn is_nan(&self) -> bool

Source§

fn is_negative(&self) -> bool

Source§

fn is_infinite(&self) -> bool

Source§

fn is_zero(&self) -> bool

Source§

impl Numeric for isize

Source§

fn to_f64(&self) -> f64

Source§

fn is_nan(&self) -> bool

Source§

fn is_negative(&self) -> bool

Source§

fn is_infinite(&self) -> bool

Source§

fn is_zero(&self) -> bool

Source§

impl Numeric for u8

Source§

fn to_f64(&self) -> f64

Source§

fn is_nan(&self) -> bool

Source§

fn is_negative(&self) -> bool

Source§

fn is_infinite(&self) -> bool

Source§

fn is_zero(&self) -> bool

Source§

impl Numeric for u16

Source§

fn to_f64(&self) -> f64

Source§

fn is_nan(&self) -> bool

Source§

fn is_negative(&self) -> bool

Source§

fn is_infinite(&self) -> bool

Source§

fn is_zero(&self) -> bool

Source§

impl Numeric for u32

Source§

fn to_f64(&self) -> f64

Source§

fn is_nan(&self) -> bool

Source§

fn is_negative(&self) -> bool

Source§

fn is_infinite(&self) -> bool

Source§

fn is_zero(&self) -> bool

Source§

impl Numeric for u64

Source§

fn to_f64(&self) -> f64

Source§

fn is_nan(&self) -> bool

Source§

fn is_negative(&self) -> bool

Source§

fn is_infinite(&self) -> bool

Source§

fn is_zero(&self) -> bool

Source§

impl Numeric for u128

Source§

fn to_f64(&self) -> f64

Source§

fn is_nan(&self) -> bool

Source§

fn is_negative(&self) -> bool

Source§

fn is_infinite(&self) -> bool

Source§

fn is_zero(&self) -> bool

Source§

impl Numeric for usize

Source§

fn to_f64(&self) -> f64

Source§

fn is_nan(&self) -> bool

Source§

fn is_negative(&self) -> bool

Source§

fn is_infinite(&self) -> bool

Source§

fn is_zero(&self) -> bool

Implementors§