Any @rustlang peeps have tips for speeding up development? For example, do you allow unused code, set static lifetimes, etc until you're ready to start finalizing the initial build?
11
3
18
Reiterating what others seem to already have said -- `unimplemented!()` is your friend, as is `.unwrap()`. I find I write the code faster if I write the documentation **first** because that way I already know how I want it to work before I write it.

Feb 5, 2020 ยท 2:10 PM UTC

7