Attribute Macro auto_delegate_impl::delegate

source ·
#[delegate]
Expand description

The trait given this attribute are eligible for delegation.

use auto_delegate::delegate;

#[delegate]
pub trait Readable{
    fn read(&self) -> String;
}