我正在尝试使用该binance_async
库,tokio
并向futures
Binance 发出并发订单。(请参阅本问题末尾的注释。)我正在使用
的函数返回一个类型。我面临以下问题,在这两个示例中进行了说明:binance_async
binance_async::error::Result<impl futures::future::Future<_, _>>
- 假设我正在尝试这样做:
let bn = Binance::with_credential(&api_key, &secret_key);
let fut = bn.limit_sell(&symbol, qty, price);
tokio::spawn(fut.unwrap()); // ERROR
/* Error message:
error[E0277]: `impl futures::future::Future` is not a future
--> src/main.rs:23:5
|
23 | tokio::spawn(fut.unwrap());
| ^^^^^^^^^^^^ `impl futures::future::Future` is not a future
|
= help: the trait `futures::Future` is not implemented for `impl
futures::future::Future`
*/
这太奇怪了。首先,我在任何地方都找不到futures::Future
- only futures::future::Future
,它fut.unwrap()
实现了。有什么帮助吗?
- 好吧,忘记 Tokio,让我们试试这个:
let mut orders : Vec<Result<_>> = Vec::new(); // not std::Result
let fut = bn.limit_sell(&symbol, qty, price);
orders.push(fut);
let mut futures = Vec::new(); // I want to unwrap them, to use join_all()
for f in orders.iter() {
match *f {
Ok(x) => {
futures.push(x);
},
Err(e) => {}
}
}
futures::future::join_all(futures).await; // <--- ERROR!
/* Error message (one of 3 similar ones):
error[E0277]: `impl futures::future::Future` is not a future
--> src/main.rs:37:5
|
37 | join_all(futures).await; // <--- ERROR!
| ^^^^^^^^^^^^^^^^^^^^^^^ `impl futures::future::Future` is not a future
|
= help: the trait `futures::Future` is not implemented for `impl
futures::future::Future`
= note: required because of the requirements on the impl of `futures::Future` for
`JoinAll<impl futures::future::Future>`
= note: required by `futures::Future::poll`
*/
同样的错误,同样的问题。
笔记:
- 我可能是过度进口。如果导入所有这些库看起来有点矫枉过正,甚至是问题的根源,请告诉我!
- 我知道这
binance_async
是一个维护不足的图书馆。我很可能会完全放弃这种方法,binance
转而使用 crate。我只是对这个错误很好奇。 - 我的主管说这可能与属性宏有关,但我们俩都只有几个月的 Rust 经验并试图快速完成这项工作,我们无法深入挖掘。
非常感谢 :)