💡 #RustLang Tip 7:
✅ DO: use match for pattern matching, especially when dealing with enums.
❌ DON'T: rely on if-else for enum handling, when a new variant is added nothing will remind you to update your branches!
The full compiler error message even gives suggestions on how to fix it. Make sure to read the compiler errors and suggestions, they are there to help you!
