-
Notifications
You must be signed in to change notification settings - Fork 13k
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
New Cell docs #48474
New Cell docs #48474
Changes from 3 commits
238bb38
f9e049a
58d1f83
43de01f
ce3ad26
7ded7f7
397ce8a
9091584
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,22 @@ | |
|
||
//! Shareable mutable containers. | ||
//! | ||
//! Rust memory safety is based on this rule: Given an object `T`, is only possible to | ||
//! have one of the following: | ||
//! | ||
//! - Having several inmutable references (`&T`) to the object (also know as Aliasing). | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. s/inmutable/immutable |
||
//! - Having one mutable reference (`&mut T`) to the object (also know as Mutability). | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
//! | ||
//! This is enforced by the Rust compiler. However, there are situations where this rule is not | ||
//! flexible enough. Sometimes is required to have multiple references to an object and yet | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Missing "it" |
||
//! mutate it. | ||
//! | ||
//! Shareable mutable containers exist to permit mutability in presence of aliasing in a | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should be "in the presence" |
||
//! controlled manner. Both `Cell<T>` and `RefCell<T>` allows to do this in a single threaded | ||
//! way. However, neither `Cell<T>` nor `RefCell<T>` are thread safe (they do not implement | ||
//! `Sync`), if you need to do Aliasing and Mutation between multiple threads is possible to use | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Use period instead of comma after these parentheses.
|
||
//! `Mutex`, `RwLock` or `AtomicXXX`. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We should probably link to these types here. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ok, I'll do it :) |
||
//! | ||
//! Values of the `Cell<T>` and `RefCell<T>` types may be mutated through shared references (i.e. | ||
//! the common `&T` type), whereas most Rust types can only be mutated through unique (`&mut T`) | ||
//! references. We say that `Cell<T>` and `RefCell<T>` provide 'interior mutability', in contrast | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing "it"