1 2 3 4 5 6
use auto_impl::auto_impl; #[auto_impl(Box, Arc)] pub trait Speaker: Send + Sync { fn speak(&self, message: &str); }