pub type SharedJobRx = Arc<Mutex<UnboundedReceiver<ToolJob>>>;Expand description
A shared, multi-consumer job receiver: several tool_workers pull from the
same channel by taking the lock only long enough to recv().
Aliased Typeยง
pub struct SharedJobRx { /* private fields */ }