Rust调用async函数时变量无法在线程间安全传递的错误 同步:https://zhufn.fun/archives/rust-var-need-drop-before-async/ 这是一段伪代码 asyncfna(){leta:T=...;//T一个没有实现 Send的类型letb=foo(a);boo(b).await;}asyncfnboo()->i32{...} 这种情况下,会有一个future cannot be sent between...