Enum numeric_float::ParseNumericError
[−]
[src]
pub enum ParseNumericError {
NotANumber,
FloatError(ParseFloatError),
}An error which can be returned when parsing a numeric float (e.g. n32f, n64p).
Variants
NotANumber | Parsing resulted in "Not-a-Number". |
FloatError | Parsing failed for some other reason. |