This repository has been archived on 2023-03-24. You can view files and clone it, but cannot push or open issues or pull requests.
rustlings-exercises-completed/exercises/enums/enums2.rs

31 lines
615 B
Rust
Raw Permalink Normal View History

2019-10-28 22:49:49 -05:00
// enums2.rs
// Execute `rustlings hint enums2` or use the `hint` watch subcommand for a hint.
2019-10-28 22:49:49 -05:00
#[derive(Debug)]
enum Message {
// TODO: define the different variants used below
2023-03-24 16:18:51 -05:00
Move { x: i32, y: i32 },
Echo(String),
ChangeColor(u32, u32, u32),
Quit,
2019-10-28 22:49:49 -05:00
}
impl Message {
fn call(&self) {
println!("{:?}", self);
2019-10-28 22:49:49 -05:00
}
}
fn main() {
let messages = [
2020-08-10 09:24:21 -05:00
Message::Move { x: 10, y: 30 },
2019-10-28 22:49:49 -05:00
Message::Echo(String::from("hello world")),
Message::ChangeColor(200, 255, 255),
2020-08-10 09:24:21 -05:00
Message::Quit,
2019-10-28 22:49:49 -05:00
];
for message in &messages {
message.call();
}
}