type FormatResult = Result<(), FormatError>;
enum FormatResult { Ok(()), Err(FormatError), }
Contains the success value
Contains the error value