fmt-utils 0.1.0

Various utilities for use with std::fmt::Display and fast_fmt::Fmt
Documentation
1
2
3
4
5
6
7
8
9
10
pub mod std;

#[cfg(feature = "fast_fmt")]
pub mod fast_fmt;

#[cfg(not(feature = "fast_fmt"))]
pub use self::std::*;

#[cfg(feature = "fast_fmt")]
pub use self::fast_fmt::*;