pub trait Bridge<W: Worker> {
    fn send(&mut self, msg: W::Input);
}
Expand description

Bridge to a specific kind of worker.

Required Methods

Send a message to an worker.

Implementors