pub type DtoaResult = Result<Notation, Error>;
Result of formatting the number.
enum DtoaResult { Ok(Notation), Err(Error), }
Contains the success value
Contains the error value