2024-07-05 15:11:03 +03:00
|
|
|
#![allow(dead_code)]
|
|
|
|
|
2019-10-29 06:49:49 +03:00
|
|
|
#[derive(Debug)]
|
2024-07-05 15:11:03 +03:00
|
|
|
struct Point {
|
|
|
|
x: u64,
|
|
|
|
y: u64,
|
2019-10-29 06:49:49 +03:00
|
|
|
}
|
|
|
|
|
2023-11-14 10:19:15 +03:00
|
|
|
#[derive(Debug)]
|
2024-07-05 15:11:03 +03:00
|
|
|
enum Message {
|
|
|
|
// TODO: Define the different variants used below.
|
2023-11-14 10:19:15 +03:00
|
|
|
}
|
|
|
|
|
2019-10-29 06:49:49 +03:00
|
|
|
impl Message {
|
|
|
|
fn call(&self) {
|
2024-07-04 14:38:35 +03:00
|
|
|
println!("{self:?}");
|
2019-10-29 06:49:49 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let messages = [
|
2024-07-05 15:11:03 +03:00
|
|
|
Message::Resize {
|
|
|
|
width: 10,
|
|
|
|
height: 30,
|
|
|
|
},
|
2023-11-14 10:19:15 +03:00
|
|
|
Message::Move(Point { x: 10, y: 15 }),
|
2019-10-29 06:49:49 +03:00
|
|
|
Message::Echo(String::from("hello world")),
|
|
|
|
Message::ChangeColor(200, 255, 255),
|
2020-08-10 17:24:21 +03:00
|
|
|
Message::Quit,
|
2019-10-29 06:49:49 +03:00
|
|
|
];
|
|
|
|
|
|
|
|
for message in &messages {
|
|
|
|
message.call();
|
|
|
|
}
|
|
|
|
}
|