error-rules is a derive macro to implement error handler. Error handler based on the enum. Macro automatically implements conversion of any error type into the inner enum field.
#[error_from]
attribute implements an automatically conversion from any error type.
Converted type should implements std::error::Error
interface.
```rust use error_rules::*;
enum AppError { #[error_from("App IO: {}", 0)] Io(std::io::Error), }
type Result
fn example() -> Result<()> { let _file = std::fs::File::open("not-found.txt")?; unreachable!() }
let error = example().unwraperr(); asserteq!(error.tostring().asstr(), "App IO: No such file or directory (os error 2)"); ```
#[error_kind]
attribute describes custom error kind.
Could be defined without fields or with fields tuple.
```rust use error_rules::*;
enum AppError { #[errorkind("App: error without arguments")] E1, #[errorkind("App: code:{} message:{}", 0, 1)] E2(usize, String), }
type Result
fn example_1() -> Result<()> { Err(AppError::E1) }
fn example2() -> Result<()> { Err(AppError::E2(404, "Not Found".toowned())) }
let error = example1().unwraperr(); asserteq!(error.tostring().as_str(), "App: error without arguments");
let error = example2().unwraperr(); asserteq!(error.tostring().as_str(), "App: code:404 message:Not Found"); ```
#[error_from]
and #[error_kind]
contain list of attributes to display error.
First attribute should be literal string. Other attributes is a number of the
unnamed field in the tuple. Started from 0.
#[error_from]
could defined without attributes it's equal to #[error_from("{}", 0)]
By implementing error for nested modules the primary error handler returns full chain of the error.
```rust use error_rules::*;
enum ModError { #[error_from("Mod IO: {}", 0)] Io(std::io::Error), }
fn mod_example() -> Result<(), ModError> { let _file = std::fs::File::open("not-found.txt")?; unreachable!() }
enum AppError { #[error_from("App: {}", 0)] Mod(ModError), }
fn appexample() -> Result<(), AppError> { modexample()?; unreachable!() }
let error = appexample().unwraperr(); asserteq!(error.tostring().as_str(), "App: Mod IO: No such file or directory (os error 2)"); ```