num-format 0.1.2

A Rust crate for producing string-representations of numbers, formatted according to international standards
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod to_formatted_str;
#[cfg(feature = "std")]
mod to_formatted_string;
#[cfg(feature = "std")]
mod write_formatted;

pub use self::sealed::Sealed;
pub use self::to_formatted_str::ToFormattedStr;
#[cfg(feature = "std")]
pub use self::to_formatted_string::ToFormattedString;
#[cfg(feature = "std")]
pub use self::write_formatted::WriteFormatted;

mod sealed {
    pub trait Sealed {}
}