autoerror 1.0.0

Automatically generate error handling traits.
Documentation
1
2
3
4
5
6
7
8
#[test]
fn tests() {
    let t = trybuild::TestCases::new();
    t.pass("tests/basic_compile.rs");
    t.pass("tests/test_generation.rs");
    t.compile_fail("tests/error_struct.rs");
    t.compile_fail("tests/double_auto_error.rs");
}