Intro
For this post I'm looking at Chapter 14. Closures in the Rust Programming Book. A whole chapter dedicated to closures, count me in!
Capturing Variables
Rust closures can capture vars from the enclosing scope, as in other languages.
Closures That Borrow
By default closures borrow refs to captured vars …