[src]

Module std::num::strconv

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.

NumStrConv

Encompasses functions used by the string converter.

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 to_str() or to_str_radix().

float_to_str_common

Converts a number to its string representation. This is a wrapper for to_str_bytes_common(), for details see there.

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() or from_str_radix().

from_str_common

Parses a string as a number. This is a wrapper for from_str_bytes_common(), for details see there.

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 to_str() or to_str_radix().