gpt4 book ai didi

rust tokio trait bound 在 forward 方法上不满足

转载 作者:行者123 更新时间:2023-12-04 07:38:47 29 4
gpt4 key购买 nike

我升级了 wraptokio在我的 Rust 项目和升级后,forward 方法出错了。我搜索了文档,但在新版本的 tokio 框架中没有转发方法。
错误

error[E0599]: the method `forward` exists for struct `tokio::sync::mpsc::UnboundedReceiver<_>`, but its trait bounds were not satisfied


tokio::task::spawn(client_rcv.forward(client_ws_sender).map(|result| {
^^^^^^^ method cannot be called on `tokio::sync::mpsc::UnboundedReceiver<_>` due to unsatisfied trait bounds
40 | pub struct UnboundedReceiver<T> {
| -------------------------------
| |
| doesn't satisfy `_: warp::Stream`
| doesn't satisfy `tokio::sync::mpsc::UnboundedReceiver<_>: StreamExt`
|
= note: the following trait bounds were not satisfied:
`tokio::sync::mpsc::UnboundedReceiver<_>: warp::Stream`
which is required by `tokio::sync::mpsc::UnboundedReceiver<_>: StreamExt`
`&tokio::sync::mpsc::UnboundedReceiver<_>: warp::Stream`
which is required by `&tokio::sync::mpsc::UnboundedReceiver<_>: StreamExt`
`&mut tokio::sync::mpsc::UnboundedReceiver<_>: warp::Stream`
which is required by `&mut tokio::sync::mpsc::UnboundedReceiver<_>: StreamExt`
代码:
let (client_ws_sender, mut client_ws_rcv) = ws.split();
let (client_sender, client_rcv) = mpsc::unbounded_channel();

tokio::task::spawn(client_rcv.forward(client_ws_sender).map(|result| {
if let Err(e) = result {
eprintln!("error sending websocket msg: {}", e);
}
}));
cargo 依赖:
[dependencies]
tokio = { version = "1.6.0", features = ["full"] }
warp = "0.3.1"
serde = {version = "1.0", features = ["derive"] }
serde_json = "1.0"
futures = { version = "0.3", default-features = false }
uuid = { version = "0.8.2", features = ["serde", "v4"] }

最佳答案

该错误消息中最有说服力的行如下:

   | doesn't satisfy `_: warp::Stream`
| doesn't satisfy `tokio::sync::mpsc::UnboundedReceiver<_>: StreamExt`
forward 方法在 StreamExt 中定义特征;由于 a blanket implementation , 任何实现 Stream 的东西还实现了 StreamExt .但是,从 Tokio v1.6.0 开始, UnboundedReceiver 不再实现 Stream .文档反而指出:

This receiver can be turned into a Stream using UnboundedReceiverStream.


因此:
let (client_ws_sender, mut client_ws_rcv) = ws.split();
let (client_sender, client_rcv) = mpsc::unbounded_channel();
let client_rcv = UnboundedReceiverStream::new(client_rcv); // <-- this

tokio::task::spawn(client_rcv.forward(client_ws_sender).map(|result| {
if let Err(e) = result {
eprintln!("error sending websocket msg: {}", e);
}
}));

关于rust tokio trait bound 在 forward 方法上不满足,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67602278/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com