err-report
Clone of the unstable [std::error::Report] type.
Backtrace support is omitted due to nightly requirement.
Copied on 2025-09-09.
Examples
use CString;
use Report;
let invalid_utf8 = ;
let c_string = new.unwrap;
let err = c_string.into_string.unwrap_err;
// without Report, the source/root error is not printed
assert_eq!;
// with Report, all details in error chain are printed
assert_eq!;