#SIDU (Stuff I Don't Understand) 1/?
Today's thread of unknown length concerns iterators in Rust. If you know a Rust wizard, please bounce this off them.
Rust seems to *really* want you to use Iterators. If you're looping over a collection of items, the language and standard library really want you to express it as an Iterator so that you can use all the cool Iterator methods on it.
But as a guy who's been writing C for decades, I don't understand how this works at a machine level.