error-rules

Latest Version docs

Intro

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 conversion

#[error_from] attribute implements an automatically conversion from any error type. Converted type should implements std::error::Error interface.

```rust use error_rules::*;

[derive(Debug, Error)]

enum AppError { #[error_from("App IO: {}", 0)] Io(std::io::Error), }

type Result = std::result::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)"); ```

Custom error kind

#[error_kind] attribute describes custom error kind. Could be defined without fields or with fields tuple.

```rust use error_rules::*;

[derive(Debug, Error)]

enum AppError { #[errorkind("App: error without arguments")] E1, #[errorkind("App: code:{} message:{}", 0, 1)] E2(usize, String), }

type Result = std::result::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"); ```

Display attributes

#[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)]

Error prefix

#[error_prefix] attribute should be defined before enum declaration and appends prefix into error text.

```rust use error_rules::*;

[derive(Debug, Error)]

[error_prefx = "App"]

enum AppError { #[error_from] Io(std::io::Error), }

type Result = std::result::Result;

fn example() -> Result<()> { let _file = std::fs::File::open("not-found.txt")?; unreachable!() }

let error = example().unwraperr(); asserteq!(error.tostring().asstr(), "App: No such file or directory (os error 2)"); ```

Error chain

By implementing error for nested modules the primary error handler returns full chain of the error.

```rust use error_rules::*;

[derive(Debug, Error)]

[error_prefix = "Mod"]

enum ModError { #[error_from] Io(std::io::Error), }

fn mod_example() -> Result<(), ModError> { let _file = std::fs::File::open("not-found.txt")?; unreachable!() }

[derive(Debug, Error)]

[error_prefix = "App"]

enum AppError { #[error_from] Mod(ModError), }

fn appexample() -> Result<(), AppError> { modexample()?; unreachable!() }

let error = appexample().unwraperr(); asserteq!(error.tostring().as_str(), "App: Mod: No such file or directory (os error 2)"); ```