Comment on Go vs. Rust: Writing a CLI ToolparentComments−wwright6yThe “anyhow” and “thiserror” crates remove a lot of boilerplate, too. I hope something like that gets merged into std.−say_it_as_it_is6yWanna know a quick way to reduce your compile time by several seconds? Skip proc macros that you can impl manually. The Error trait is one such case where the boilerplate impl is worth it.
Comments
The “anyhow” and “thiserror” crates remove a lot of boilerplate, too. I hope something like that gets merged into std.
Wanna know a quick way to reduce your compile time by several seconds? Skip proc macros that you can impl manually. The Error trait is one such case where the boilerplate impl is worth it.