2020-01-08 10:05:31 -06:00
|
|
|
error[E0599]: no method named `clone` found for struct `Foo` in the current scope
|
2020-03-31 20:10:13 -05:00
|
|
|
--> $DIR/copy-a-resource.rs:18:16
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2018-12-16 21:21:47 -06:00
|
|
|
LL | struct Foo {
|
2022-07-01 18:47:26 -05:00
|
|
|
| ---------- method `clone` not found for this struct
|
2018-08-08 07:28:26 -05:00
|
|
|
...
|
|
|
|
LL | let _y = x.clone();
|
2019-09-06 14:00:07 -05:00
|
|
|
| ^^^^^ method not found in `Foo`
|
2018-08-08 07:28:26 -05: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 02:40:56 -05:00
|
|
|
candidate #1: `Clone`
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0599`.
|