Funny, Confusing Rust Values and References
Values and References… huh? I found a random line on the inter-webs that explained references and pointers. I do not remember where it came from, so if you are the originator, please forgive. It goes like this:
In rust you can have a mutable value, an immutable value, a mutable reference to an immutable value or a mutable reference to a mutable value.
This is confusing at first glance.