Expand description
Create a simple error enum that is a composite of other errors.
composite_error! {
MyError {
IoError: std::io::Error,
Other: String,
}
}
let e = MyError::Other("This is an error".into());
println!("{}", e);