pub type ParseResultF32 = Result<f32, ParseError>;
pub enum ParseResultF32 { Ok(f32), Err(ParseError), }
Contains the success value
Contains the error value