1error[E0599]: no method named `clone` found for struct `Foo` in the current scope
2  --> $DIR/copy-a-resource.rs:18:16
3   |
4LL | struct Foo {
5   | ---------- method `clone` not found for this
6...
7LL |     let _y = x.clone();
8   |                ^^^^^ method not found in `Foo`
9   |
10   = help: items from traits can only be used if the trait is implemented and in scope
11   = note: the following trait defines an item `clone`, perhaps you need to implement it:
12           candidate #1: `Clone`
13
14error: aborting due to previous error
15
16For more information about this error, try `rustc --explain E0599`.
17