thin_delegate 0.2.0

Auto implementation of trivial delegation to inner types
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[test]
fn ui_test() {
    let t = trybuild::TestCases::new();
    t.pass("tests/ui/pass_*.rs");
    t.compile_fail("tests/ui/fail*.rs");
    #[cfg(feature = "test_smithay")]
    {
        t.pass("tests/ui/smithay/pass_*.rs");
        t.compile_fail("tests/ui/smithay/fail*.rs");
    }
}