Attribute proc-macro to delegate method to a field.
impl
block``` use delegate_attr::delegate;
struct Foo(String);
impl Foo {
fn asstr(&self) -> &str;
fn intobytes(self) -> Vec
let foo = Foo("hello".toowned()); asserteq!(foo.asstr(), "hello"); asserteq!(foo.into_bytes(), b"hello"); ```
```
struct Foo
impl
impl
impl
let foo = Foo { inner: RefCell::new(vec![1]) }; asserteq!(foo.len(), 1); foo.push(2); asserteq!(foo.len(), 2); asserteq!(foo.intoboxedslice().asref(), &[1, 2]); ```
```
struct Foo
impl
let foo = Foo(vec![1]); assert_eq!(foo.len(), 1); ```