err-report
Clone of the unstable [err_report::Report] type.
Backtrace support is omitted due to nightly requirement.
Copied on 2025-09-09.
Examples
use Report;
let err = new);
assert_eq!;
Clone of the unstable [err_report::Report] type.
Backtrace support is omitted due to nightly requirement.
Copied on 2025-09-09.
use err_report::Report;
let err = std::io::Error::new(
std::io::ErrorKind::InvalidData,
std::io::Error::new(
std::io::ErrorKind::InvalidData,
std::io::Error::other("Invalid file name"),
)));
assert_eq!(
"Failed to connect",
Report::new(err).to_string(),
);