auto-delegate 0.1.3

Auto delegate allows you that automatic impl of traits and delegate their handling to child members.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![allow(unused)]

mod test01_delegate;
mod test02_multiple_fields;
mod test03_new_type;
mod test04_unnamed_fields;

#[cfg(test)]
#[test]
fn tests() {
    let t = trybuild::TestCases::new();
    t.pass("tests/struct/test01_delegate.rs");
    t.pass("tests/struct/test02_multiple_fields.rs");
    t.pass("tests/struct/test03_new_type.rs");
    t.pass("tests/struct/test04_unnamed_fields.rs");
}