Trait dtoa::Floating[][src]

pub trait Floating {
    fn write<W: Write>(self, _: W) -> Result<usize>;
}
[]

An floating point number that can be formatted by dtoa::write.

Required methods

fn write<W: Write>(self, _: W) -> Result<usize>[src]

Implementations on Foreign Types

impl Floating for f32[src][]

impl Floating for f64[src][]

Implementors