2019-10-29 03:49:49 +00:00
|
|
|
// enums2.rs
|
2019-11-11 15:51:38 +00:00
|
|
|
// Make me compile! Execute `rustlings hint enums2` for hints!
|
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) {
|
|
|
|
println!("{:?}", &self);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
}
|