mirror of
https://github.com/ArthurDanjou/rustlings.git
synced 2026-02-04 13:47:49 +01:00
- Created empty solution files for various exercises in strings, modules, hashmaps, options, error handling, generics, traits, lifetimes, tests, iterators, smart pointers, threads, macros, clippy, conversions, and quizzes. - Each solution file contains a main function with a comment indicating that it will be automatically filled after completing the exercise. - Added a README.md file to provide information about the solutions and their purpose.
39 lines
693 B
Rust
39 lines
693 B
Rust
#[derive(Debug)]
|
|
struct Point {
|
|
x: u64,
|
|
y: u64,
|
|
}
|
|
|
|
#[derive(Debug)]
|
|
enum Message {
|
|
// TODO: Define the different variants used below.
|
|
Resize { width: u64, height: u64 },
|
|
Move(Point),
|
|
Echo(String),
|
|
ChangeColor(u8, u8, u8),
|
|
Quit,
|
|
}
|
|
|
|
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();
|
|
}
|
|
}
|