Rollup merge of #80442 - steffahn:mention_arc_in_cow, r=Mark-Simulacrum
Mention Arc::make_mut and Rc::make_mut in the documentation of Cow Following this discussion: https://users.rust-lang.org/t/should-the-cow-documentation-mention-arc/53341 _Rendered (the last paragraph is new):_  `@rustbot` modify labels: T-doc, T-libs
This commit is contained in:
commit
bdf8bbde1d
1 changed files with 5 additions and 0 deletions
|
@ -103,6 +103,11 @@ where
|
||||||
/// is desired, `to_mut` will obtain a mutable reference to an owned
|
/// is desired, `to_mut` will obtain a mutable reference to an owned
|
||||||
/// value, cloning if necessary.
|
/// value, cloning if necessary.
|
||||||
///
|
///
|
||||||
|
/// If you need reference-counting pointers, note that
|
||||||
|
/// [`Rc::make_mut`][crate::rc::Rc::make_mut] and
|
||||||
|
/// [`Arc::make_mut`][crate::sync::Arc::make_mut] can provide clone-on-write
|
||||||
|
/// functionality as well.
|
||||||
|
///
|
||||||
/// # Examples
|
/// # Examples
|
||||||
///
|
///
|
||||||
/// ```
|
/// ```
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue