2019-10-29 10:49:49 +07:00
|
|
|
// enums2.rs
|
2021-04-25 16:29:39 +07:00
|
|
|
//
|
|
|
|
// Make me compile!
|
|
|
|
//
|
|
|
|
// If you need help, open the corresponding README.md or run: rustlings hint enums2
|
2019-10-29 10:49:49 +07:00
|
|
|
|
2019-11-11 19:38:24 +07:00
|
|
|
// I AM NOT DONE
|
|
|
|
|
2019-10-29 10:49:49 +07:00
|
|
|
#[derive(Debug)]
|
|
|
|
enum Message {
|
|
|
|
// TODO: define the different variants used below
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Message {
|
|
|
|
fn call(&self) {
|
|
|
|
println!("{:?}", &self);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let messages = [
|
2020-08-10 21:24:21 +07:00
|
|
|
Message::Move { x: 10, y: 30 },
|
2019-10-29 10:49:49 +07:00
|
|
|
Message::Echo(String::from("hello world")),
|
|
|
|
Message::ChangeColor(200, 255, 255),
|
2020-08-10 21:24:21 +07:00
|
|
|
Message::Quit,
|
2019-10-29 10:49:49 +07:00
|
|
|
];
|
|
|
|
|
|
|
|
for message in &messages {
|
|
|
|
message.call();
|
|
|
|
}
|
|
|
|
}
|