Я пытаюсь инициализировать массив структур в 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
?