2019-10-29 03:49:49 +00:00
|
|
|
// enums2.rs
|
2023-05-29 17:39:08 +00:00
|
|
|
//
|
|
|
|
// Execute `rustlings hint enums2` or use the `hint` watch subcommand for a
|
|
|
|
// hint.
|
2019-10-29 03:49:49 +00:00
|
|
|
|
2019-11-11 12:38:24 +00:00
|
|
|
// I AM NOT DONE
|
|
|
|
|
2019-10-29 03:49:49 +00:00
|
|
|
#[derive(Debug)]
|
|
|
|
enum Message {
|
|
|
|
// TODO: define the different variants used below
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Message {
|
|
|
|
fn call(&self) {
|
2022-12-09 20:42:39 +00:00
|
|
|
println!("{:?}", self);
|
2019-10-29 03:49:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let messages = [
|
2020-08-10 14:24:21 +00:00
|
|
|
Message::Move { x: 10, y: 30 },
|
2019-10-29 03:49:49 +00:00
|
|
|
Message::Echo(String::from("hello world")),
|
|
|
|
Message::ChangeColor(200, 255, 255),
|
2020-08-10 14:24:21 +00:00
|
|
|
Message::Quit,
|
2019-10-29 03:49:49 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
for message in &messages {
|
|
|
|
message.call();
|
|
|
|
}
|
|
|
|
}
|