Attribute proc-macro to delegate method to a field.
impl
block```rust 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"); ```
```rust
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]); ```
into
and call
attribute```rust
struct Inner; impl Inner { pub fn method(&self, num: u32) -> u32 { num } }
struct Wrapper { inner: Inner }
impl Wrapper { // calls method, converts result to u64 #[into] pub fn method(&self, num: u32) -> u64;
// calls method, returns ()
#[call(method)]
pub fn method_noreturn(&self, num: u32);
} ```
```rust
struct Foo
impl
let foo = Foo(vec![1]); assert_eq!(foo.len(), 1); ```