我正在尝试编写一个枚举派生PartialEq
,其中包含一个手动执行的特征对象。我在这里使用了解决方案,以强制实现者Trait
编写相等方法。这无法编译:
trait Trait {
fn partial_eq(&self, rhs: &Box<Trait>) -> bool;
}
impl PartialEq for Box<Trait> {
fn eq(&self, rhs: &Box<Trait>) -> bool {
self.partial_eq(rhs)
}
}
#[derive(PartialEq)]
enum Enum {
Trait(Box<Trait>),
}
error[E0507]: cannot move out of borrowed content
--> src/main.rs:13:11
|
13 | Trait(Box<Trait>),
| ^^^^^^^^^^^ cannot move out of borrowed content
这仅在我手动编译时编译impl PartialEq for Enum
。为什么会这样?