#[delegate]
The trait given this attribute are eligible for delegation.
use auto_delegate::delegate; #[delegate] pub trait Readable{ fn read(&self) -> String; }