(&mut self)
| 222 | #[async_trait(?Send)] |
| 223 | impl Yielder for CountingYielder { |
| 224 | async fn yield_now(&mut self) { |
| 225 | *self.count.borrow_mut() += 1; |
| 226 | } |
| 227 | } |
| 228 | |
| 229 | let (tx, rx) = async_channel::unbounded(); |
no outgoing calls
no test coverage detected