``sql
-- This error crate is intended to
-- enhance error-stack:
-- https://hash.dev/blog/announcing-error-stack
-- error-stack
isfantastic && doesthings.in(|a| functional(approach))` but
error_stack::Report::change_context
can make code noisy when used often-- ...so why not auto implement a bunch of From<Error> for MyError
?
-- and provide fundamental building blocks such as bigerror::NotFound
-- to express common causes for errors and imply correlation?
CREATE CRATE IF NOT EXISTS
bigerror (
error BIGERROR NOT NULL,
);
```
```rust use bigerror::{ fromreport, reportable, toreport, BoxError, ConversionError, DbError, NetworkError, NotFound, ParseError, Report, ReportAs, Reportable, ResultExt, }; use uuid::Uuid;
pub struct MyError;
reportable!(MyError);
pub enum Error {
#[error("{0:?}")]
Report(Report
from_report!({
impl From
impl From<std::io::Error>
impl From<tonic::transport::Error as NetworkError>
impl From<std::num::ParseIntError as ParseError>
impl From<sqlx::Error as DbError>
for Error::Report(MyError)
});
pub enum OtherError {
#[error("{0:?}")]
Report(Report
to_report!(impl ToReport
fn conversionerror() -> Result
fn boxerror() -> Result
inner().map_err(BoxError::from)
}
fn main() -> Result<(), Report
let box_error = box_error().change_context(MyError)?;
let other_err = Err(OtherError::Report(NotFound::with_kv("id", Uuid::new_v4())));
other_err.map_err(MyError::report_inner)?;
"NaN".parse::<usize>().report_as()?;
Ok(())
} ```