mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-21 17:52:12 +03:00
expand docs
This commit is contained in:
+7
-2
@@ -1551,15 +1551,20 @@ pub const fn get(&self) -> *mut T {
|
||||
}
|
||||
|
||||
/// Gets a mutable pointer to the wrapped value.
|
||||
/// The difference to [`get`] is that this function accepts a raw pointer,
|
||||
/// which is useful to avoid the creation of temporary references.
|
||||
///
|
||||
/// This can be cast to a pointer of any kind.
|
||||
/// The result can be cast to a pointer of any kind.
|
||||
/// Ensure that the access is unique (no active references, mutable or not)
|
||||
/// when casting to `&mut T`, and ensure that there are no mutations
|
||||
/// or mutable aliases going on when casting to `&T`.
|
||||
///
|
||||
/// [`get`]: #method.get
|
||||
///
|
||||
/// # Examples
|
||||
///
|
||||
/// Gradual initialization of an `UnsafeCell`:
|
||||
/// Gradual initialization of an `UnsafeCell` requires `raw_get`, as
|
||||
/// calling `get` would require creating a reference to uninitialized data:
|
||||
///
|
||||
/// ```
|
||||
/// #![feature(unsafe_cell_raw_get)]
|
||||
|
||||
Reference in New Issue
Block a user