2 pages tagged with "rust"
Rust Trait Implementations and References
February 22, 2023 - 1475 words - 8 mins
If you implement a trait on a type,
and then take a reference to that type,
does the reference also implement the trait?
For a while I thought so! Let me explain why.
Sometimes the things that Rust does for you can obfuscate what's really going on under the hood,
and I discovered one of those recent…