@@ -4,7 +4,7 @@ error[E0277]: the trait bound `dyn MyTrait: DynClone` is not satisfied
4
4
3 | dyn_clone::clone_trait_object!(MyTrait);
5
5
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6
6
| |
7
- | the trait `Clone` is not implemented for `dyn MyTrait`, which is required by `dyn MyTrait: DynClone`
7
+ | the trait `Clone` is not implemented for `dyn MyTrait`
8
8
| required by a bound introduced by this call
9
9
|
10
10
= help: the following other types implement trait `DynClone`:
@@ -27,7 +27,7 @@ error[E0277]: the trait bound `dyn MyTrait + Send: DynClone` is not satisfied
27
27
3 | dyn_clone::clone_trait_object!(MyTrait);
28
28
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
29
29
| |
30
- | the trait `Clone` is not implemented for `dyn MyTrait + Send`, which is required by `dyn MyTrait + Send: DynClone`
30
+ | the trait `Clone` is not implemented for `dyn MyTrait + Send`
31
31
| required by a bound introduced by this call
32
32
|
33
33
= help: the following other types implement trait `DynClone`:
@@ -50,7 +50,7 @@ error[E0277]: the trait bound `dyn MyTrait + Sync: DynClone` is not satisfied
50
50
3 | dyn_clone::clone_trait_object!(MyTrait);
51
51
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
52
52
| |
53
- | the trait `Clone` is not implemented for `dyn MyTrait + Sync`, which is required by `dyn MyTrait + Sync: DynClone`
53
+ | the trait `Clone` is not implemented for `dyn MyTrait + Sync`
54
54
| required by a bound introduced by this call
55
55
|
56
56
= help: the following other types implement trait `DynClone`:
@@ -73,7 +73,7 @@ error[E0277]: the trait bound `dyn MyTrait + Send + Sync: DynClone` is not satis
73
73
3 | dyn_clone::clone_trait_object!(MyTrait);
74
74
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
75
75
| |
76
- | the trait `Clone` is not implemented for `dyn MyTrait + Send + Sync`, which is required by `dyn MyTrait + Send + Sync: DynClone`
76
+ | the trait `Clone` is not implemented for `dyn MyTrait + Send + Sync`
77
77
| required by a bound introduced by this call
78
78
|
79
79
= help: the following other types implement trait `DynClone`:
0 commit comments