私はRustで構造体の配列を初期化しようとしています:
enum Direction {
North,
East,
South,
West,
}
struct RoadPoint {
direction: Direction,
index: i32,
}
// Initialise the array, but failed.
let data = [RoadPoint { direction: Direction::East, index: 1 }; 4];
コンパイルしようとすると、コンパイラーはCopy
トレイトが実装されていないと文句を言います。
error[E0277]: the trait bound `main::RoadPoint: std::marker::Copy` is not satisfied
--> src/main.rs:15:16
|
15 | let data = [RoadPoint { direction: Direction::East, index: 1 }; 4];
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `std::marker::Copy` is not implemented for `main::RoadPoint`
|
= note: the `Copy` trait is required because the repeated element will be copied
Copy
トレイトはどのように実装できますか?
列挙型の前に#[derive(Copy, Clone)]
を追加するだけです。
あなたが本当に望むなら、あなたもできます
impl Copy for MyEnum {}
Derive-attributeは内部で同じことを行います。