delegate-attr 0.3.0

Attribute proc-macro to delegate method to a field
Documentation
1
2
3
4
5
6
use delegate_attr::delegate;

#[delegate(x)]
struct Foo(Vec<u8>);

fn main() {}