mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-25 00:03:43 +00:00
20 lines
712 B
Plaintext
20 lines
712 B
Plaintext
error[E0277]: the trait bound `K: Copy` is not satisfied
|
|
--> $DIR/missing-bound-in-derive-copy-impl-2.rs:12:14
|
|
|
|
|
LL | pub loc: Vector2<K>,
|
|
| ^^^^^^^^^^ the trait `Copy` is not implemented for `K`
|
|
|
|
|
note: required by a bound in `Vector2`
|
|
--> $DIR/missing-bound-in-derive-copy-impl-2.rs:5:31
|
|
|
|
|
LL | pub struct Vector2<T: Debug + Copy + Clone>{
|
|
| ^^^^ required by this bound in `Vector2`
|
|
help: consider further restricting this bound
|
|
|
|
|
LL | pub struct AABB<K: Debug + std::marker::Copy>{
|
|
| +++++++++++++++++++
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|