-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve shared ownership guide #25115
Comments
This example actually shows some weird behavior, I was expecting a compiler error upon mentioning It correctly errors when trying to read the value though, as seen by adding |
What is the "shared ownership guide"? I think this text is from the API docs of Rc, yes? |
Ah sorry, nope it's from here http://doc.rust-lang.org/1.0.0-beta.4/book/ownership.html#shared-ownership |
@Ryman weird indeed. Inserting src/main.rs:29:22: 29:25 error: use of moved value: `car`
src/main.rs:29 println!("{:?}", car) whereas the What's going on here? |
It's legal to write to a moved-away value, but not to read from it. See #21232 for more discussion of this. |
@mbrubeck thank you for the pointers! (no pun intended) Back to the topic of improving the guide. The guide comes after the section of borrowing and lifetimes so that knowledge is already covered. So when it says
We may just think, why not change it so that each wheel holds a reference to the car: #[derive(Debug)]
struct Car {
name: String,
}
#[derive(Debug)]
struct Wheel<'a> {
size: i32,
owner: &'a Car,
}
fn main() {
let car = Car { name: "DeLorean".to_string() };
let mut wheels = vec!();
for _ in 0..4 {
wheels.push(Wheel { size: 360, owner: &car });
}
} I think it's worth pointing out the differences to what is done with the |
This whole bit is gone now, so this issue is effectively closed. |
I was looking through the shared ownership guide and stumbled over something that wasn't quite obvious to me at first sight.
So there is this code:
It then states:
So I wanted to see if changing the
car
has any effect on the car that's shared among the wheels.But this doesn't work. At first I thought
Rc::new(car)
will return a ref counted pointer tocar
. But that's not the case. Instead it actually makes a copy ofcar
before it creates the ref counted pointer.We can make this even more obvious when we use
RefCell
.So my point is that there is no connection to
car
anymore.car
becomes pretty much useless in the scenario as it's implicitly copied with theRc::new(car)
call and from then on onlycar_owner
holds the relevant car.As I said, it's probably obvious to the experienced Rust user but may not for the beginner.
I would suggest to either point it out in the text more explicitly or change the example to inline the creation of the car to not keep it in a local
car
variable.//cc @steveklabnik
The text was updated successfully, but these errors were encountered: