| 6 | use futures::Future; |
| 7 | use lazy_static::lazy_static; |
| 8 | pub struct SimpleExecutor { |
| 9 | task_queue: VecDeque<Task>, |
| 10 | } |
| 11 | |
| 12 | impl SimpleExecutor { |
| 13 | pub fn new() -> SimpleExecutor { |
nothing calls this directly
no outgoing calls
no test coverage detected