pub trait Bridge<AGN>where
    AGN: Agent,
{ fn send(&mut self, msg: <AGN as Agent>::Input); }
Expand description

Bridge to a specific kind of worker.

Required Methods

Send a message to an agent.

Implementors