mirror of
https://github.com/rust-lang/rustlings.git
synced 2024-12-18 09:54:14 +01:00
34 lines
579 B
Rust
34 lines
579 B
Rust
#[derive(Debug)]
|
|
struct Point {
|
|
x: u64,
|
|
y: u64,
|
|
}
|
|
|
|
#[derive(Debug)]
|
|
enum Message {
|
|
// TODO: Define the different variants used below.
|
|
}
|
|
|
|
impl Message {
|
|
fn call(&self) {
|
|
println!("{self:?}");
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
let messages = [
|
|
Message::Resize {
|
|
width: 10,
|
|
height: 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();
|
|
}
|
|
}
|