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

mod test01_associated_type;
mod test02_associated_types_with_generics;
mod test03_associated_types_with_lifetimes;

#[cfg(test)]
#[test]
fn tests() {
    let t = trybuild::TestCases::new();
    t.pass("tests/associated_type/test01_associated_type.rs");
    t.pass("tests/associated_type/test02_associated_types_with_generics.rs");
    t.pass("tests/associated_type/test03_associated_types_with_lifetimes.rs");
}