auto_impl_trait 0.7.1

auto impl trait by provide trait file
Documentation
1
2
3
4
5
6
7
8
9
10
11
use auto_impl_trait::auto_impl;

// pub type GetContainerEventsStream = i32;

#[auto_impl(image)]
pub struct Square {
    side: i32,
}

fn main() {
}