2020-09-02 02:40:56 -05:00
|
|
|
error[E0277]: the trait bound `A: Copy` is not satisfied
|
2020-07-10 17:13:49 -05:00
|
|
|
--> $DIR/wf-struct-field.rs:12:11
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | data: IsCopy<A>
|
2020-09-02 02:40:56 -05:00
|
|
|
| ^^^^^^^^^ the trait `Copy` is not implemented for `A`
|
2019-12-26 06:43:33 -06:00
|
|
|
|
|
2021-07-31 11:26:55 -05:00
|
|
|
note: required by a bound in `IsCopy`
|
|
|
|
--> $DIR/wf-struct-field.rs:7:17
|
|
|
|
|
|
|
|
|
LL | struct IsCopy<T:Copy> {
|
|
|
|
| ^^^^ required by this bound in `IsCopy`
|
2020-03-13 21:28:14 -05:00
|
|
|
help: consider restricting type parameter `A`
|
2019-12-26 06:43:33 -06:00
|
|
|
|
|
2021-03-30 04:56:39 -05:00
|
|
|
LL | struct SomeStruct<A: std::marker::Copy> {
|
2021-06-21 21:07:19 -05:00
|
|
|
| +++++++++++++++++++
|
2018-08-08 07:28:26 -05:00
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|