52 lines
1.7 KiB
Plaintext
52 lines
1.7 KiB
Plaintext
error[E0277]: the trait bound `T: Copy` is not satisfied
|
|
--> $DIR/explicit-drop-bounds.rs:41:5
|
|
|
|
|
LL | fn drop(&mut self) {}
|
|
| ^^^^^^^^^^^^^^^^^^ the trait `Copy` is not implemented for `T`
|
|
|
|
|
note: required by a bound in `DropMe`
|
|
--> $DIR/explicit-drop-bounds.rs:7:18
|
|
|
|
|
LL | struct DropMe<T: Copy>(T);
|
|
| ^^^^ required by this bound in `DropMe`
|
|
help: consider restricting type parameter `T` with trait `Copy`
|
|
|
|
|
LL | impl<T: std::marker::Copy> Drop for DropMe<T>
|
|
| +++++++++++++++++++
|
|
|
|
error[E0277]: the trait bound `T: Copy` is not satisfied
|
|
--> $DIR/explicit-drop-bounds.rs:38:18
|
|
|
|
|
LL | impl<T> Drop for DropMe<T>
|
|
| ^^^^^^^^^ the trait `Copy` is not implemented for `T`
|
|
|
|
|
note: required by a bound in `DropMe`
|
|
--> $DIR/explicit-drop-bounds.rs:7:18
|
|
|
|
|
LL | struct DropMe<T: Copy>(T);
|
|
| ^^^^ required by this bound in `DropMe`
|
|
help: consider restricting type parameter `T` with trait `Copy`
|
|
|
|
|
LL | impl<T: std::marker::Copy> Drop for DropMe<T>
|
|
| +++++++++++++++++++
|
|
|
|
error[E0277]: the trait bound `T: Copy` is not satisfied
|
|
--> $DIR/explicit-drop-bounds.rs:41:18
|
|
|
|
|
LL | fn drop(&mut self) {}
|
|
| ^^^^ the trait `Copy` is not implemented for `T`
|
|
|
|
|
note: required by a bound in `DropMe`
|
|
--> $DIR/explicit-drop-bounds.rs:7:18
|
|
|
|
|
LL | struct DropMe<T: Copy>(T);
|
|
| ^^^^ required by this bound in `DropMe`
|
|
help: consider restricting type parameter `T` with trait `Copy`
|
|
|
|
|
LL | impl<T: std::marker::Copy> Drop for DropMe<T>
|
|
| +++++++++++++++++++
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|