pub trait Bridge<AGN: Agent> { // Required method fn send(&mut self, msg: AGN::Input); }
Bridge to a specific kind of worker.
Send a message to an agent.