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"); ```
``` use delegate_attr::delegate;
struct Foo
impl
let mut foo = Foo { a: vec![1] }; asserteq!(foo.get(0), Some(&1)); foo.push(10); asserteq!(foo.get(1), Some(&10)); assert_eq!(foo.len(), 2); ```
``` use delegate_attr::delegate;
struct Foo
impl
let foo = Foo(vec![1]); assert_eq!(foo.len(), 1); ```