pub trait Service { // Required method fn name(&self) -> &str; }
All services should implement this trait. It guarantees that we will be able to run the service inside a thread (it is Send).
Send