此代码(操场):
#[derive(Clone)]
struct Foo<'a, T: 'a> {
t: &'a T,
}
fn bar<'a, T>(foo: Foo<'a, T>) {
foo.clone();
}
...无法编译:
error: no method named `clone` found for type `Foo<'a, T>` in the current scope
--> <anon>:7:9
|>
16 |> foo.clone();
|> ^^^^^
note: the method `clone` exists but the following trait bounds were not satisfied: `T : std::clone::Clone`
help: items from traits can only be used if the trait is implemented and in scope; the following trait defines an item `clone`, perhaps you need to implement it:
help: candidate #1: `std::clone::Clone`
添加use std::clone::Clone;并不会改变任何内容,因为它已经在序幕中了。
当我删除#[derive(Clone)]并手动实现Clone时Foo,它会按预期编译!
impl<'a, T> Clone for Foo<'a, T> {
fn clone(&self) -> Self {
Foo {
t: self.t,
}
}
}
这里发生了什么?
#[derive()]-impls和手动的之间有区别吗?
这是编译器错误吗?
还有我没想到的东西?
天涯尽头无女友