1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2025-08-08 22:36:55 +02:00

Merge pull request #2103 from senekor/senk/kvuzvzqqkskk

Remove redundant enum definition task
This commit is contained in:
Mo
2024-09-16 12:56:28 +02:00
committed by GitHub

View File

@ -4,7 +4,11 @@ struct Point {
}
enum Message {
// TODO: Implement the message variant types based on their usage below.
Resize { width: u64, height: u64 },
Move(Point),
Echo(String),
ChangeColor(u8, u8, u8),
Quit,
}
struct State {