(queue: Arc<ArrayQueue<Task>>, f: impl Future<Output = ()> + 'static)
| 67 | waker_cache: BTreeMap<TaskId, Waker>, |
| 68 | } |
| 69 | pub fn qpush(queue: Arc<ArrayQueue<Task>>, f: impl Future<Output = ()> + 'static) { |
| 70 | queue.push(Task::new(f)); |
| 71 | } |
| 72 | |
| 73 | impl Executor { |
| 74 | pub fn new() -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected