mirror of
https://github.com/notohh/rustlings.git
synced 2024-11-22 14:02:22 -05:00
39 lines
660 B
Rust
39 lines
660 B
Rust
#![allow(dead_code)]
|
|
|
|
#[derive(Debug)]
|
|
struct Point {
|
|
x: u64,
|
|
y: u64,
|
|
}
|
|
|
|
#[derive(Debug)]
|
|
enum Message {
|
|
Resize { width: u64, height: u64 },
|
|
Move(Point),
|
|
Echo(String),
|
|
ChangeColor(u8, u8, u8),
|
|
Quit,
|
|
}
|
|
|
|
impl Message {
|
|
fn call(&self) {
|
|
println!("{self:?}");
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
let messages = [
|
|
Message::Resize {
|
|
width: 10,
|
|
height: 30,
|
|
},
|
|
Message::Move(Point { x: 10, y: 15 }),
|
|
Message::Echo(String::from("hello world")),
|
|
Message::ChangeColor(200, 255, 255),
|
|
Message::Quit,
|
|
];
|
|
|
|
for message in &messages {
|
|
message.call();
|
|
}
|
|
}
|