rustlings/exercises/enums/enums2.rs

33 lines
566 B
Rust
Raw Normal View History

2019-10-29 03:49:49 +00:00
// enums2.rs
//
// Execute `rustlings hint enums2` or use the `hint` watch subcommand for a
// hint.
2019-10-29 03:49:49 +00:00
2019-10-29 03:49:49 +00:00
#[derive(Debug)]
enum Message {
2023-11-03 07:10:06 +00:00
Move { x: i32, y: i32},
Echo(String),
ChangeColor(i32, i32, i32),
Quit
2019-10-29 03:49:49 +00:00
}
impl Message {
fn call(&self) {
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();
}
}