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.

Trait Implementations

impl Display for ParseNumericError

fn fmt(&self, fmt: &mut Formatter) -> Result

impl Error for ParseNumericError

fn description(&self) -> &str

fn cause(&self) -> Option<&Error>

Derived Implementations

impl PartialEq for ParseNumericError

fn eq(&self, __arg_0: &ParseNumericError) -> bool

fn ne(&self, __arg_0: &ParseNumericError) -> bool

impl Debug for ParseNumericError

fn fmt(&self, __arg_0: &mut Formatter) -> Result

impl Clone for ParseNumericError

fn clone(&self) -> ParseNumericError

fn clone_from(&mut self, source: &Self)