Module core::fmt::num
[−]
[src]
Integer and floating-point number formatting
Reexports
use prelude::v1::*; |
use fmt; |
use num::Zero; |
use ops::{Div, Rem, Sub}; |
use str; |
use slice; |
use ptr; |
use mem; |
Structs
| Binary |
A binary (base 2) radix |
| Decimal |
A decimal (base 10) radix |
| LowerHex |
A hexadecimal (base 16) radix, formatted with lower-case characters |
| Octal |
An octal (base 8) radix |
| Radix |
[Deprecated] A radix with in the range of |
| RadixFmt |
[Deprecated] A helper type for formatting radixes. |
| UpperHex |
A hexadecimal (base 16) radix, formatted with upper-case characters |
Constants
| DEC_DIGITS_LUT |
Traits
| GenericRadix |
A type that represents a specific radix |
| Int |
Functions
| radix |
[Deprecated] Constructs a radix formatter in the range of |