1- error[E0277]: the trait bound `NotCopyableState: std::marker:: Copy` is not satisfied
1+ error[E0277]: the trait bound `NotCopyableState: Copy` is not satisfied
22 --> tests/compile_fail/control_block_state_without_copy.rs:6:8
33 |
446 | struct NotCopyableState {
55 | ^^^^^^^^^^^^^^^^ unsatisfied trait bound
66 |
7- help: the trait `std::marker:: Copy` is not implemented for `NotCopyableState`
7+ help: the trait `Copy` is not implemented for `NotCopyableState`
88 --> tests/compile_fail/control_block_state_without_copy.rs:6:1
99 |
10106 | struct NotCopyableState {
@@ -15,13 +15,13 @@ note: required by a bound in `Pod`
1515 | pub unsafe trait Pod: Zeroable + Copy + 'static {}
1616 | ^^^^ required by this bound in `Pod`
1717
18- error[E0277]: the trait bound `NotCopyableState: std::marker:: Copy` is not satisfied
18+ error[E0277]: the trait bound `NotCopyableState: Copy` is not satisfied
1919 --> tests/compile_fail/control_block_state_without_copy.rs:6:8
2020 |
21216 | struct NotCopyableState {
2222 | ^^^^^^^^^^^^^^^^ unsatisfied trait bound
2323 |
24- help: the trait `std::marker:: Copy` is not implemented for `NotCopyableState`
24+ help: the trait `Copy` is not implemented for `NotCopyableState`
2525 --> tests/compile_fail/control_block_state_without_copy.rs:6:1
2626 |
27276 | struct NotCopyableState {
@@ -32,13 +32,13 @@ note: required by a bound in `EmbeddedState`
3232 | pub trait EmbeddedState: Pod + Zeroable + Default + Copy + Send + Sync + 'static {
3333 | ^^^^ required by this bound in `EmbeddedState`
3434
35- error[E0277]: the trait bound `NotCopyableState: std::marker:: Copy` is not satisfied
35+ error[E0277]: the trait bound `NotCopyableState: Copy` is not satisfied
3636 --> tests/compile_fail/control_block_state_without_copy.rs:6:8
3737 |
38386 | struct NotCopyableState {
3939 | ^^^^^^^^^^^^^^^^ unsatisfied trait bound
4040 |
41- help: the trait `std::marker:: Copy` is not implemented for `NotCopyableState`
41+ help: the trait `Copy` is not implemented for `NotCopyableState`
4242 --> tests/compile_fail/control_block_state_without_copy.rs:6:1
4343 |
44446 | struct NotCopyableState {
0 commit comments