For some reason, when we install Rust VSCODE extension the formatter does not work by default.To do that I we need to enforce the formatter via settings.json (or User preference):
settings.json
{
"[rust]": {
"editor.defaultFormatter": "rust-lang.rust", // Makes the magic
"editor.formatOnSave": true // Optional
},
}