delegate-attr 0.3.0

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

#[delegate(x)]
#[cfg(not(fake))]
extern "C" {}

fn main() {}