pub type ResultWithReport<Report, Error> = Result<Report, (Report, Error)>;Expand description
A type alias for a Result that contains an error which is a tuple of a report and an original error.
Aliased Type§
pub enum ResultWithReport<Report, Error> {
Ok(Report),
Err((Report, Error)),
}