err-report 0.0.2

Clone of the unstable `std::error::Report` type
Documentation

err-report

crates.io Documentation Version MIT or Apache 2.0 licensed Dependency Status Download

Clone of the unstable [err_report::Report] type.

Backtrace support is omitted due to nightly requirement.

Copied on 2025-09-09.

Examples

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(),
);