2020-01-08 16:05:31 +00:00
|
|
|
error[E0599]: no method named `clone` found for struct `Foo` in the current scope
|
2020-04-01 01:10:13 +00:00
|
|
|
--> $DIR/copy-a-resource.rs:18:16
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2018-12-17 03:21:47 +00:00
|
|
|
LL | struct Foo {
|
2022-07-01 23:47:26 +00:00
|
|
|
| ---------- method `clone` not found for this struct
|
2018-08-08 12:28:26 +00:00
|
|
|
...
|
|
|
|
LL | let _y = x.clone();
|
2019-09-06 19:00:07 +00:00
|
|
|
| ^^^^^ method not found in `Foo`
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
= help: items from traits can only be used if the trait is implemented and in scope
|
|
|
|
= note: the following trait defines an item `clone`, perhaps you need to implement it:
|
2020-09-02 07:40:56 +00:00
|
|
|
candidate #1: `Clone`
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0599`.
|