When writing code, follow these conventions
- Do NOT add comments explaining what is each line/expression doing.
- Try to keep the code uniform, and follow the style of the existing code.
- Always use standalone Rust modules, avoid inline
mods - Use structured logging, don't do string interpolation in logging statements.