impl-tools 0.11.4

Helper macros: autoimpl
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
fn main() {
    let _ = impl_tools::impl_anon! {
        #[derive(Clone, Debug)]
        struct (i32 = 123);

        impl () {
            fn get(&self) -> i32 {
                self.0
            }
        }
    };
}