2020-09-26 16:20:14 -05:00
|
|
|
error[E0599]: the method `clone` exists for struct `Box<R>`, but its trait bounds were not satisfied
|
2020-03-31 20:10:13 -05:00
|
|
|
--> $DIR/unique-pinned-nocopy.rs:12:16
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2020-10-06 09:37:23 -05:00
|
|
|
LL | struct R {
|
|
|
|
| -------- doesn't satisfy `R: Clone`
|
2020-02-18 01:22:19 -06:00
|
|
|
...
|
2020-10-06 09:37:23 -05:00
|
|
|
LL | let _j = i.clone();
|
2020-09-26 16:20:14 -05:00
|
|
|
| ^^^^^ method cannot be called on `Box<R>` due to unsatisfied trait bounds
|
2022-12-09 09:56:23 -06:00
|
|
|
--> $SRC_DIR/alloc/src/boxed.rs:LL:COL
|
2022-12-12 09:25:04 -06:00
|
|
|
::: $SRC_DIR/alloc/src/boxed.rs:LL:COL
|
|
|
|
|
|
|
|
|
= note: doesn't satisfy `Box<R>: Clone`
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2020-09-26 16:20:14 -05:00
|
|
|
= note: the following trait bounds were not satisfied:
|
2020-09-02 02:40:56 -05:00
|
|
|
`R: Clone`
|
|
|
|
which is required by `Box<R>: Clone`
|
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`
|
2021-07-26 13:26:23 -05:00
|
|
|
help: consider annotating `R` with `#[derive(Clone)]`
|
|
|
|
|
|
2023-03-17 21:18:39 -05:00
|
|
|
LL + #[derive(Clone)]
|
|
|
|
LL | struct R {
|
2021-07-26 13:26:23 -05:00
|
|
|
|
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0599`.
|