mirror of
https://github.com/notohh/rustlings.git
synced 2024-11-21 21:42:23 -05:00
26 lines
462 B
Rust
26 lines
462 B
Rust
#[derive(Debug)]
|
|
enum Message {
|
|
Move { x: i64, y: i64 },
|
|
Echo(String),
|
|
ChangeColor(u8, u8, u8),
|
|
Quit,
|
|
}
|
|
|
|
impl Message {
|
|
fn call(&self) {
|
|
println!("{:?}", self);
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
let messages = [
|
|
Message::Move { x: 10, y: 30 },
|
|
Message::Echo(String::from("hello world")),
|
|
Message::ChangeColor(200, 255, 255),
|
|
Message::Quit,
|
|
];
|
|
|
|
for message in &messages {
|
|
message.call();
|
|
}
|
|
}
|