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
#![allow(unused)]


mod test01_lifetime;
mod test02_multiple_lifetimes;


#[cfg(test)]
#[test]
fn tests() {
    let t = trybuild::TestCases::new();
    t.pass("tests/lifetime/test01_lifetime.rs");
    t.pass("tests/lifetime/test02_multiple_lifetimes.rs");
}