14 releases

0.3.1 Feb 11, 2022
0.3.0 Oct 29, 2020
0.2.4 Apr 9, 2020
0.2.3 Mar 5, 2020
0.1.4 Dec 27, 2018

#278 in Procedural macros

Download history 18865/week @ 2023-12-07 16502/week @ 2023-12-14 8712/week @ 2023-12-21 12779/week @ 2023-12-28 20941/week @ 2024-01-04 22416/week @ 2024-01-11 21575/week @ 2024-01-18 23007/week @ 2024-01-25 16788/week @ 2024-02-01 20260/week @ 2024-02-08 21337/week @ 2024-02-15 20396/week @ 2024-02-22 26800/week @ 2024-02-29 28525/week @ 2024-03-07 26481/week @ 2024-03-14 24047/week @ 2024-03-21

109,803 downloads per month
Used in fewer than 79 crates

MIT/Apache

22KB
310 lines

err-derive

Build status Crates.io API Docs

A failure-like derive macro for the std Error. The source code is mostly copied from failure-derive.

Minimum Rust version: 1.34.0

Motivation

Why yet another error handling library? There already are dozen others, the most popular being:

The former provides a nice #[derive(Fail)] macro, but it uses its own error type (Fail) and its usage is rather discouraged since std::error::Error is getting fixed to provide the same benefits as Fail.

error-chain does support std::error::Error, but it uses a declarative for generating the error implementation which makes the syntax too obscure in my opinion.

This crate tries to combine both advantages:

  • work with std::error::Error
  • provide a custom #[derive(Error)] that works just like failure-derive

err-derive is compatible with std, including the recent change to deprecate Error::cause in favour of Error::source, and provides an easy syntax for generating the Display and Error boilerplate (the latter being 99% copied from failure-derive).

Features

err-derive can be applied to your error struct / enum and does the following for you:

  • Derive Display implementation
  • Derive Error implementation (implementing source to return the cause of the error)
  • Derive From<OtherError> implementations

Usage

Cargo.toml:

[dependencies]
err-derive = "0.1"

Rust code:

#[cfg(feature = "std")]
use std::error::Error;
#[cfg(not(feature = "std"))]
use std::fmt::Display;
use std::path::PathBuf;

use err_derive::Error;

#[derive(Debug, Error)]
pub enum FormatError {
    #[error(display = "invalid header (expected: {:?}, got: {:?})", expected, found)]
    InvalidHeader {
        expected: String,
        found: String,
    },
    #[error(display = "missing attribute: {:?}", _0)]
    MissingAttribute(String),
}

#[derive(Debug, Error)]
pub enum LoadingError {
    #[error(display = "could not decode file")]
    FormatError(#[error(source)] FormatError),
    #[error(display = "could not find file: {:?}", path)]
    NotFound { path: PathBuf },
}

fn main() {
    let my_error: LoadingError = FormatError::MissingAttribute("some_attr".to_owned()).into();

    print_error(&my_error);
}

#[cfg(feature = "std")]
fn print_error(e: &dyn Error) {
    eprintln!("error: {}", e);
    let mut cause = e.source();
    while let Some(e) = cause {
        eprintln!("caused by: {}", e);
        cause = e.source();
    }
}

#[cfg(not(feature = "std"))]
fn print_error(e: &dyn Display) {
    eprintln!("error: {}", e);
}

no_std

You can use this library in your #![no_std] projects by disabling the default std feature.

[dependencies]
err-derive = { version = "...", default-features = false }

Without the default std feature, only the From and Display implementations are derived, as Error requires std.

Credit

Credit goes to @withoutboats and other contributors of failure.

License

This project is dual-licensed under Apache-2.0 / MIT. You're free to choose one of both licenses. Every contribution made to this project is assumed to be licensed according to these terms.

See LICENSE, LICENSE-MIT and LICENSE-APACHE for more information.

Dependencies

~1–12MB
~124K SLoC