Guide on how to write documentation for a Rust crate

I have received (a lot of) requests about writing a guide on how to write documentation in Rust lately. I’m quite happy that people finally gets interested into this area so let’s not let it rest and let’s go! Read more

Similar

Methods for Array Initialization in Rust

Arrays in Rust are fixed size, and Rust requires that every element in an array is initialized to a valid value when the array is initialized. The result of these requirements is array initialization in Rust is a much deeper topic than it would seem. (more…)

Read more »