(recv: mpsc::Receiver<Input>,
dispatcher: Dispatcher<Output>,
proc: Proc)
| 54 | { |
| 55 | |
| 56 | pub fn new(recv: mpsc::Receiver<Input>, |
| 57 | dispatcher: Dispatcher<Output>, |
| 58 | proc: Proc) -> Self |
| 59 | { |
| 60 | Context { |
| 61 | recv, |
| 62 | dispatcher, |
| 63 | proc, |
| 64 | } |
| 65 | } |
| 66 | |
| 67 | |
| 68 | #[inline] |
nothing calls this directly
no outgoing calls
no test coverage detected