E4149# 不能在当前上下文调用异步函数。 异步函数只能在异步函数中调用。 错误示例# async fn f() -> Int { ... } fn g() -> Int { f!() } 建议# 您可以将包含函数改为异步函数: async fn g() -> Int { f!() }