composite-error 0.1.0

easily create a enum error composed of other errors
Documentation

Create a simple error enum that is a composite of other errors.

# use composite_error::composite_error;
composite_error! {
MyError {
IoError: std::io::Error,
Other: String,
}
}

let e = MyError::Other("This is an error".into());
println!("{}", e);