@@ -4,7 +4,7 @@ error[E0277]: the trait bound `dyn MyTrait: Clone` is not satisfied
443 | dyn_clone::clone_trait_object!(MyTrait);
55 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
66 | |
7- | the trait `Clone` is not implemented for `dyn MyTrait`
7+ | the trait `Clone` is not implemented for `dyn MyTrait`, which is required by `dyn MyTrait: DynClone`
88 | required by a bound introduced by this call
99 |
1010 = help: the following other types implement trait `DynClone`:
@@ -27,7 +27,7 @@ error[E0277]: the trait bound `dyn MyTrait + Send: Clone` is not satisfied
27273 | dyn_clone::clone_trait_object!(MyTrait);
2828 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2929 | |
30- | the trait `Clone` is not implemented for `dyn MyTrait + Send`
30+ | the trait `Clone` is not implemented for `dyn MyTrait + Send`, which is required by `dyn MyTrait + Send: DynClone`
3131 | required by a bound introduced by this call
3232 |
3333 = help: the following other types implement trait `DynClone`:
@@ -50,7 +50,7 @@ error[E0277]: the trait bound `dyn MyTrait + Sync: Clone` is not satisfied
50503 | dyn_clone::clone_trait_object!(MyTrait);
5151 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
5252 | |
53- | the trait `Clone` is not implemented for `dyn MyTrait + Sync`
53+ | the trait `Clone` is not implemented for `dyn MyTrait + Sync`, which is required by `dyn MyTrait + Sync: DynClone`
5454 | required by a bound introduced by this call
5555 |
5656 = help: the following other types implement trait `DynClone`:
@@ -73,7 +73,7 @@ error[E0277]: the trait bound `dyn MyTrait + Send + Sync: Clone` is not satisfie
73733 | dyn_clone::clone_trait_object!(MyTrait);
7474 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
7575 | |
76- | the trait `Clone` is not implemented for `dyn MyTrait + Send + Sync`
76+ | the trait `Clone` is not implemented for `dyn MyTrait + Send + Sync`, which is required by `dyn MyTrait + Send + Sync: DynClone`
7777 | required by a bound introduced by this call
7878 |
7979 = help: the following other types implement trait `DynClone`:
0 commit comments