#delegates #proc-macro-attributes

macro delegate-attr

Attribute proc-macro to delegate method to a field

13 releases

0.3.0 Sep 17, 2023
0.2.9 Aug 11, 2020
0.2.7 Jun 16, 2020
0.2.6 May 24, 2020
0.1.1 May 19, 2020

#1259 in Rust patterns

Download history 22305/week @ 2025-12-30 34720/week @ 2026-01-06 42668/week @ 2026-01-13 44038/week @ 2026-01-20 42086/week @ 2026-01-27 42814/week @ 2026-02-03 31267/week @ 2026-02-10 40344/week @ 2026-02-17 35548/week @ 2026-02-24 38955/week @ 2026-03-03 47531/week @ 2026-03-10 44153/week @ 2026-03-17 47925/week @ 2026-03-24 49346/week @ 2026-03-31 40665/week @ 2026-04-07 44421/week @ 2026-04-14

189,498 downloads per month
Used in 63 crates (7 directly)

MIT license

14KB
192 lines

delegate-attr

CI Crates.io

Attribute proc-macro to delegate method to a field.

Examples

Delegate impl block

use delegate_attr::delegate;

struct Foo(String);

#[delegate(self.0)]
impl Foo {
    fn as_str(&self) -> &str {}
    fn into_bytes(self) -> Vec<u8> {}
}

let foo = Foo("hello".to_owned());
assert_eq!(foo.as_str(), "hello");
assert_eq!(foo.into_bytes(), b"hello");

Delegate trait impl


struct Iter(std::vec::IntoIter<u8>);

#[delegate(self.0)]
impl Iterator for Iter {
    type Item = u8;
    fn next(&mut self) -> Option<u8> {}
    fn count(self) -> usize {}
    fn size_hint(&self) -> (usize, Option<usize>) {}
    fn last(self) -> Option<u8> {}
}

let iter = Iter(vec![1, 2, 4, 8].into_iter());
assert_eq!(iter.count(), 4);
let iter = Iter(vec![1, 2, 4, 8].into_iter());
assert_eq!(iter.last(), Some(8));
let iter = Iter(vec![1, 2, 4, 8].into_iter());
assert_eq!(iter.sum::<u8>(), 15);

With more complicated target

struct Foo<T> {
    inner: RefCell<Vec<T>>,
}

#[delegate(self.inner.borrow())]
impl<T> Foo<T> {
    fn len(&self) -> usize {}
}

#[delegate(self.inner.borrow_mut())]
impl<T> Foo<T> {
    fn push(&self, value: T) {}
}

#[delegate(self.inner.into_inner())]
impl<T> Foo<T> {
    fn into_boxed_slice(self) -> Box<[T]> {}
}

let foo = Foo { inner: RefCell::new(vec![1]) };
assert_eq!(foo.len(), 1);
foo.push(2);
assert_eq!(foo.len(), 2);
assert_eq!(foo.into_boxed_slice().as_ref(), &[1, 2]);

into and call attribute

struct Inner;
impl Inner {
    pub fn method(&self, num: u32) -> u32 { num }
}

struct Wrapper { inner: Inner }

#[delegate(self.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) {}
}

Delegate single method

struct Foo<T>(Vec<T>);

impl<T> Foo<T> {
    #[delegate(self.0)]
    fn len(&self) -> usize {}
}

let foo = Foo(vec![1]);
assert_eq!(foo.len(), 1);

Dependencies

~100–455KB
~11K SLoC