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