Rust Cookbook

This Rust Cookbook is a collection of
simple examples that demonstrate good practices to accomplish common
programming tasks, using the crates of the Rust ecosystem. Read more

Similar

Fallible Iterator Adapters in Rust

A great aspect of the Rust stdlib is that many common operations are provided with a shared idiom. Rather than say having to remember how to write a correct sort function by hand, the stdlib provides a fast one for you. (more…)

Read more »