error_type

This crate provides the error_type! macro, which is designed to produce a fresh, reasonably well-featured error type from a concise definition.

A simple example of the usage is given below:

```rust

[macrouse] extern crate errortype;

use std::borrow::Cow; use std::error::Error; use std::io;

error_type! { #[derive(Debug)] pub enum LibError { Io(std::io::Error) { cause; }, Message(Cow<'static, str>) { desc (e) &e; from (s: &'static str) s.into(); from (s: String) s.into(); }, Other(Box) { desc (e) e.description(); cause (e) Some(&e); } } }

fn main() {} ```

The expansion of the above includes the following:

FAQ