7
Reading Club: The Book Ch 4 "Understanding Ownership" [PROJECT]
(rust-book.cs.brown.edu)
A collaborative space for people to work together on learning Rust, learning about the Lemmy code base, discussing whatever confusions or difficulties we're having in these endeavours, and solving problems, including, hopefully, some contributions back to the Lemmy code base.
Rules TL;DR: Be nice, constructive, and focus on learning and working together on understanding Rust and Lemmy.
See also:
Thumbnail and banner generated by ChatGPT.
A basic lesson or tip from a discussion in this community (link here):
IE, using copy/clone as an escape hatch for ownership issues is perfectly fine.
Another one that helps put ownership into perspective I think is this section in the Rustonomicon on unsafe rust, and the section that follows:
There are two kinds of reference:
Which obey the following rules:
That's it. That's the whole model references follow.
Of course, we should probably define what aliased means.
Unfortunately, Rust hasn't actually defined its aliasing model. 🙀
While we wait for the Rust devs to specify the semantics of their language, let's use the next section to discuss what aliasing is in general, and why it matters.
Basically it highlights that rust's inferential understanding of the lifetimes of variables is a bit coarse (and maybe a work in progress?) ... so when the compiler raises an error about ownership, it's being cautious (as The Book stresses, unsafe code may not have any undefined behaviour).
It helps I think reframe the whole thing as not being exclusively about correctness but just making sure memory bugs don't happen
Last lesson I think I've gained after chapter 4 was that the implementation and details of any particular method or object matter. The quiz in chapter 6 (question 5) I've mentioned is I think a good example of this. What exactly the
CopyandClonetrait are all about too ... where I found looking into those made me comfortable with the general problem space I was navigating in working with ownership in rust. Obviously the compiler is the safe guard, but you don't always want to get beaten over with ownership problems.