mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-05-09 08:08:17 +08:00
12 lines
277 B
Rust
12 lines
277 B
Rust
|
// ANCHOR: here
|
||
|
struct QuitMessage; // unit struct
|
||
|
struct MoveMessage {
|
||
|
x: i32,
|
||
|
y: i32,
|
||
|
}
|
||
|
struct WriteMessage(String); // tuple struct
|
||
|
struct ChangeColorMessage(i32, i32, i32); // tuple struct
|
||
|
// ANCHOR_END: here
|
||
|
|
||
|
fn main() {}
|