error_union 0.2.0

A library to simplify error handling in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![allow(unused_imports)]

pub mod internal;
pub use internal::GetErrorSet;
pub use internal::Error;
pub use internal::HasErrorId;


pub use error_union_derive::*;

gen_error_id!(std::io::Error);