We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
in examle
use std::cell::RefCell; use std::rc::Rc; struct MyStruct { s: u32 } fn main() { let mut x = Rc::new(RefCell::new(MyStruct{ s: 5u32 })); let y = x.clone(); x.borrow_mut().s = 6; println!("{}", x.borrow.s); }
we must use borrow() instead of just borrow
borrow()
borrow
The text was updated successfully, but these errors were encountered:
Rollup merge of rust-lang#31050 - apasel422:issue-31048, r=Manishearth
2ff14a4
Closes rust-lang#31048 r? @Manishearth
3f56b29
No branches or pull requests
in examle
we must use
borrow()
instead of justborrow
The text was updated successfully, but these errors were encountered: