Overrides the default yielder with the given one.
(mut self, yielder: Rc<RefCell<dyn Yielder>>)
| 344 | |
| 345 | /// Overrides the default yielder with the given one. |
| 346 | pub fn with_yielder(mut self, yielder: Rc<RefCell<dyn Yielder>>) -> Self { |
| 347 | self.yielder = Some(yielder); |
| 348 | self |
| 349 | } |
| 350 | |
| 351 | /// Overrides the default signals channel with the given one. |
| 352 | pub fn with_signals_chan(mut self, chan: (Sender<Signal>, Receiver<Signal>)) -> Self { |
no outgoing calls