Tips

Tips

5 bookmarks
Custom sorting
Prototyping in Rust | corrode Rust Consulting
Prototyping in Rust | corrode Rust Consulting
Programming is an iterative process - as much as we would like to come up with the perfect solution from the start, it rarely works that way. Good programs often start as quick prototypes. The bad ones stay prototypes, but the best ones evo…
·corrode.dev·
Prototyping in Rust | corrode Rust Consulting
Rust error handling with anyhow - AntoineRR's blog
Rust error handling with anyhow - AntoineRR's blog
Rust has an unusual way of handling errors, and it can be a bit tricky to deal with at first. Some crates exists to help you facing the rough edges of Rust e...
·antoinerr.github.io·
Rust error handling with anyhow - AntoineRR's blog
Working with Environment Variables in Rust
Working with Environment Variables in Rust
This post shows how to work with environment variables in Rust using both, the standard library and the envy crate.
use std::env;
·thorsten-hans.com·
Working with Environment Variables in Rust