Enum std::num::strconv::ExponentFormat[src]
pub enum ExponentFormat {
ExpNone,
ExpDec,
ExpBin,
}A flag that specifies whether to use exponential (scientific) notation.
Variants
ExpNone | Do not use exponential notation. |
ExpDec | Use exponential notation with the exponent having a base of 10 and the
exponent sign being |
ExpBin | Use exponential notation with the exponent having a base of 2 and the
exponent sign being |