pub async fn asyncify<F, T>(f: F) -> Twhere F: FnOnce() -> T + Send + 'static, T: Send + 'static,
Convert the block call to async call.