gpt4 book ai didi

rust - 如何解决 Rust 中这种不受约束的类型参数错误

转载 作者:行者123 更新时间:2023-12-03 11:27:53 24 4
gpt4 key购买 nike

我有一个消息传递系统,想通用地解决所有问题。
消息可以发送给实体,实体可以处理消息。

// There are many messages that implement this trait
trait Message {
type Response;
}

// Messages can be sent to 'entities'
trait Entity {
type Error;
}

// Entities can implement handlers for specific messages
trait MessageHandler<M: Message>: Entity {
fn handle(
&mut self,
message: M,
) -> Result<M::Response, Self::Error>;
}
这将像这样实现:
struct SimpleEntity;
impl Entity for SimpleEntity {
type Error = ();
}

struct SimpleMessage;
impl Message for SimpleMessage {
type Response = ();
}

impl MessageHandler<SimpleMessage> for SimpleEntity {
fn handle(
&mut self,
message: SimpleMessage,
) -> Result<(), ()> {
Ok(())
}
}
所有实体都存储在一个系统中。系统只能存储一种类型的实体。对于该类型具有的每个消息处理程序,都应该有一个 send_message一般接收消息的函数。
我想它可能看起来像这样:
// A message system for one type of entity. This is an example. Normally there's all kinds of async multithreaded stuff here
struct MessageSystem<E: Entity> {
handlers: Vec<E>,
}

// For every message handler, we want to implement the send_message function
impl<M: Message, MH: MessageHandler<M>> MessageSystem<MH> {
pub fn send_message(&mut self, entity_id: (), message: M) -> Result<M::Response, MH::Error> {
unimplemented!();
}
}
然后可以这样使用:
// Example usage
fn main() {
let mut system = MessageSystem { handlers: vec![SimpleEntity] };
system.send_message((), SimpleMessage).unwrap();
}
但是,这会在 send_message 的 impl block 中产生编译错误。功能:
error[E0207]: the type parameter `M` is not constrained by the impl trait, self type, or predicates
--> src/lib.rs:25:6
|
25 | impl<M: Message, MH: MessageHandler<M>> MessageSystem<MH> {
| ^ unconstrained type parameter

error: aborting due to previous error

For more information about this error, try `rustc --explain E0207`.
Link to playground
我怎样才能使这项工作?
目标是拥有这些不同的消息结构,让它们由实体可以实现的处理程序处理,并通过系统结构将消息发送到实体。
显而易见的事情是使消息成为 MessageHandler 中的关联类型。 trait,但是你不能为一个实体实现它的多个版本。

最佳答案

由于M通用于 send_message但不是 MessageSystem特征本身,将其移至 send_message函数,并移动绑定(bind)到方法的特征。

impl<MH: Entity> MessageSystem<MH> {
pub fn send_message<M>(&mut self, entity_id: (), message: M) -> Result<M::Response, MH::Error>
where
M: Message,
MH: MessageHandler<M>,
{
unimplemented!();
}
}
Playground link
您的原始错误发生是因为您有一个特征不使用的通用参数,这意味着它是模糊的并且无法选择正确的 impl。

关于rust - 如何解决 Rust 中这种不受约束的类型参数错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65129214/

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