enum_convert 0.2.0

A Rust procedural macro library for deriving automatic conversions between enum variants
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[test]
fn compile_fail_tests() {
    let t = trybuild::TestCases::new();
    t.compile_fail("tests/combination/compile_fail/**/*.rs");
}

#[test]
fn pass_tests() {
    let t = trybuild::TestCases::new();
    t.pass("tests/combination/pass/**/*.rs");
}