2020-09-26 17:20:14 -04:00
|
|
|
error[E0599]: the method `clone` exists for struct `Box<dyn Foo>`, but its trait bounds were not satisfied
|
2020-04-01 04:10:13 +03:00
|
|
|
--> $DIR/unique-object-noncopyable.rs:24:16
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2024-01-26 20:34:29 +00:00
|
|
|
LL | trait Foo {
|
|
|
|
| --------- doesn't satisfy `dyn Foo: Clone` or `dyn Foo: Sized`
|
2020-02-17 23:22:19 -08:00
|
|
|
...
|
2024-01-26 20:34:29 +00:00
|
|
|
LL | let _z = y.clone();
|
|
|
|
| ^^^^^ method cannot be called on `Box<dyn Foo>` due to unsatisfied trait bounds
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2020-09-26 17:20:14 -04:00
|
|
|
= note: the following trait bounds were not satisfied:
|
2021-10-08 18:15:53 -05:00
|
|
|
`dyn Foo: Sized`
|
|
|
|
which is required by `Box<dyn Foo>: Clone`
|
2021-10-19 02:33:38 +09:00
|
|
|
`dyn Foo: Clone`
|
|
|
|
which is required by `Box<dyn Foo>: Clone`
|
2024-01-30 18:10:12 +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:
|
|
|
|
candidate #1: `Clone`
|
2018-08-08 14:28:26 +02:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0599`.
|