mirror of https://github.com/sunface/rust-course
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
526 B
29 lines
526 B
// enums2.rs
|
|
// Make me compile! Execute `rustlings hint enums2` for hints!
|
|
|
|
// I AM NOT DONE
|
|
|
|
#[derive(Debug)]
|
|
enum Message {
|
|
// TODO: define the different variants used below
|
|
}
|
|
|
|
impl Message {
|
|
fn call(&self) {
|
|
println!("{:?}", &self);
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
let messages = [
|
|
Message::Move { x: 10, y: 30 },
|
|
Message::Echo(String::from("hello world")),
|
|
Message::ChangeColor(200, 255, 255),
|
|
Message::Quit,
|
|
];
|
|
|
|
for message in &messages {
|
|
message.call();
|
|
}
|
|
}
|