2 releases

Uses old Rust 2015

0.1.1 Mar 12, 2017
0.1.0 Mar 12, 2017

#19 in #error-derive

43 downloads per month

MIT license

4KB
76 lines

enum-error-derive

Build Status

Derive Error traits for Enum Error struct

Example

#[macro_use]
extern crate enum_error_derive;

use std::{io, fmt};

#[derive(Debug, EnumError)] // EnumError derives From<*>, fmt::Display and error::Error
pub enum Error {
    IO(io::Error),
    Fmt(fmt::Error),
}

fn io_error() -> Result<(), io::Error> {
    Ok(())
}

fn fmt_error() -> Result<(), fmt::Error> {
    Ok(())
}

fn merged_error() -> Result<(), Error> {
    io_error()?;
    fmt_error()?;
    Ok(())
}

Dependencies

~1.5MB
~40K SLoC