我有一个包含trait对象成员的结构体,如下所示:
trait Contract {}
#[derive(Debug)]
struct Foo {
x: Box<Contract>,
}
我想让这个结构体派生出Debug
,但是编译器不喜欢它:
error[E0277]: `Contract + 'static` doesn't implement `std::fmt::Debug`
--> src/main.rs:5:5
|
5 | x: Box<Contract>,
| ^^^^^^^^^^^^^^^^ `Contract + 'static` cannot be formatted using `:?`; add `#[derive(Debug)]` or manually implement `std::fmt::Debug`
|
= help: the trait `std::fmt::Debug` is not implemented for `Contract + 'static`
= note: required because of the requirements on the impl of `std::fmt::Debug` for `std::boxed::Box<Contract + 'static>`
= note: required because of the requirements on the impl of `std::fmt::Debug` for `&std::boxed::Box<Contract + 'static>`
= note: required for the cast to the object type `std::fmt::Debug`
我不知道该如何解决这个问题。我理解为什么编译器不能为trait实现Debug
,因为它不能告诉什么类型将实现它,但同样的原因也是我不为trait手动实现它的原因(甚至不确定这是否可能)。
什么是获得我想要的行为的好方法?
2条答案
按热度按时间c3frrgcw1#
Traits不能使用
#[derive()]
属性;你需要手动实现它:由于trait对象会丢失类型信息(类型擦除),因此您可以使用
Contract
实现的函数,但您无法访问Debug
的底层类型或其特定实现。但是,如果你让
Contract
依赖于Debug
trait,确保它的所有实现者也必须实现Debug
:您将能够为
foo
实现#[derive(Debug)]
,而无需手动为Contract
实现Debug
。bejyjqdl2#
根据Rust 2021,你可以像这样为另一个trait实现trait: