1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2025-03-23 21:29:42 +02:00
2023-11-14 08:19:40 +01:00

38 lines
656 B
Rust

// enums2.rs
//
// Execute `rustlings hint enums2` or use the `hint` watch subcommand for a
// hint.
// I AM NOT DONE
#[derive(Debug)]
enum Message {
// TODO: define the different variants used below
}
#[derive(Debug)]
struct Point {
x: u8,
y: u8,
}
impl Message {
fn call(&self) {
println!("{:?}", self);
}
}
fn main() {
let messages = [
Message::Resize { w: 10, h: 30 },
Message::Move(Point { x: 10, y: 15 }),
Message::Echo(String::from("hello world")),
Message::ChangeColor(200, 255, 255),
Message::Quit,
];
for message in &messages {
message.call();
}
}