Attribute Macro auto_delegate_macros::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;
}