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