Module std::num::strconv[src]
Enums
| ExponentFormat | A flag that specifies whether to use exponential (scientific) notation. |
| SignFormat | How to emit the sign of a number. |
| SignificantDigits | The number of digits used for emitting the fractional part of a number, if any. |
Traits
| NumStrConv | Encompasses functions used by the string converter. |
Functions
| float_to_str_bytes_common | Converts a number to its string representation as a byte vector.
This is meant to be a common base implementation for all numeric string
conversion functions like |
| float_to_str_common | Converts a number to its string representation. This is a wrapper for
|
| from_str_bytes_common | Parses a byte slice as a number. This is meant to
be a common base implementation for all numeric string conversion
functions like |
| from_str_common | Parses a string as a number. This is a wrapper for
|
| int_to_str_bytes_common | Converts an integral number to its string representation as a byte vector.
This is meant to be a common base implementation for all integral string
conversion functions like |