pub trait Runner: Send + Sync + 'static { // Required method fn block_on(&self, fut: Pin<Box<dyn Future<Output = ()>>>); }