Struct UnsafeCell
#[repr(transparent)]
pub struct UnsafeCell<T: ?Sized> { pub(in ::cell) value: T }
The core primitive for interior mutability in Rust.
If you have a reference &T, then normally in Rust the compiler performs optimizations based on
the knowledge that &T points to immutable data. Mutating that data, for example through an
alias or by transmuting a &T into a &mut T, is considered undefined behavior.
UnsafeCell<T> opts-out of the immutability guarantee for &T: a shared reference
&UnsafeCell<T> may point to data that is being mutated. This is called "interior mutability".
All other types that allow internal mutability, such as [Cell<T>] and [RefCell<T>], internally
use UnsafeCell to wrap their data.
Note that only the immutability guarantee for shared references is affected by UnsafeCell. The
uniqueness guarantee for mutable references is unaffected. As explained below, for the duration
of the lifetime of an &mut, no other reference may exist and no pointer may be used to access
that memory; this applies even with UnsafeCell<T>.
UnsafeCell does nothing to avoid data races; they are still undefined behavior. If multiple
threads have access to the same UnsafeCell, they must follow the usual rules of the
concurrent memory model: conflicting non-synchronized accesses must be done via the APIs in
core::sync::atomic.
The UnsafeCell API itself is technically very simple: .get() gives you a raw pointer
*mut T to its contents. It is up to you as the abstraction designer to use that raw pointer
correctly.
Aliasing rules
The precise Rust aliasing rules are somewhat in flux, but the main points are not contentious:
-
If you create a safe reference with lifetime
'a(either a&Tor&mut Treference), then you must not access the data in any way that contradicts that reference for the remainder of'a, and you must not create any contradicting references. For example, this means that if you take the*mut Tfrom anUnsafeCell<T>and cast it to a&T, then the data inTmust remain immutable (modulo anyUnsafeCelldata found withinT, of course) until that reference's lifetime expires, and no&mutreference to this data may be created. Similarly, if you create a&mut Treference, then you must not access the data within theUnsafeCellwith any other pointer/reference until that reference expires, and no reference of any kind may be created. -
For both
&TwithoutUnsafeCell<_>and&mut T, you must also not deallocate the data until the reference expires. As a special exception, given a&T, any part of it that is inside anUnsafeCell<_>may be deallocated during the lifetime of the reference, after the last time the reference is used (dereferenced or reborrowed). Since you cannot deallocate a part of what a reference points to, this means the memory a&Tpoints to can be deallocated only if every part of it (including padding) is inside anUnsafeCell.
However, whenever a &UnsafeCell<T> is constructed or dereferenced, it must still point to
live memory and the compiler is allowed to insert spurious reads if it can prove that this
memory has not yet been deallocated.
To assist with proper design, the following scenarios are explicitly declared legal for single-threaded code:
-
A
&Treference can be released to safe code and there it can co-exist with other&Treferences, but not with a&mut T -
A
&mut Treference may be released to safe code provided neither other&mut Tnor&Tco-exist with it. A&mut Tmust always be unique.
Note that whilst mutating the contents of a &UnsafeCell<T> (even while other
&UnsafeCell<T> references alias the cell) is
ok (provided you enforce the above invariants some other way), it is still undefined behavior
to have aliasing &mut UnsafeCell<T> (or aliasing &mut of any type). That is, UnsafeCell is a wrapper
designed to have a special interaction with shared accesses (i.e., through an
&UnsafeCell<_> reference); there is no magic whatsoever when dealing with exclusive
accesses (e.g., through a &mut UnsafeCell<_>): neither the cell nor the wrapped value
may be aliased for the duration of that &mut borrow.
This is showcased by the .get_mut() accessor, which is a safe getter that yields
a &mut T.
Memory layout
UnsafeCell<T> has the same in-memory representation as its inner type T. A consequence
of this guarantee is that it is possible to convert between T and UnsafeCell<T>.
Special care has to be taken when converting a nested T inside of an Outer<T> type
to an Outer<UnsafeCell<T>> type: this is not sound when the Outer<T> type enables niche
optimizations. For example, the type Option<NonNull<u8>> is typically 8 bytes large on
64-bit platforms, but the type Option<UnsafeCell<NonNull<u8>>> takes up 16 bytes of space.
Therefore this is not a valid conversion, despite NonNull<u8> and UnsafeCell<NonNull<u8>>>
having the same memory layout. This is because UnsafeCell disables niche optimizations in
order to avoid its interior mutability property from spreading from T into the Outer type,
thus this can cause distortions in the type size in these cases.
The following examples make use of this guarantee:
# use UnsafeCell;
/// # Safety
/// The caller must not call `get_mut_unchecked` again (on any alias of `ptr`) for the duration
/// of the lifetime of the returned reference.
unsafe
# use UnsafeCell;
Examples
Here is an example showcasing how to soundly mutate the contents of an UnsafeCell<_> despite
there being multiple references aliasing the cell:
use UnsafeCell;
let x: = 42.into;
// Get multiple / concurrent / shared references to the same `x`.
let : = ;
unsafe // <---------- cannot go beyond this point -------------------+
unsafe
The following example showcases the fact that exclusive access to an UnsafeCell<T>
implies exclusive access to its T:
// with exclusive accesses, `UnsafeCell` is a transparent no-op wrapper, so no need for
// `unsafe` here.
use UnsafeCell;
let mut x: = 42.into;
// Get a compile-time-checked unique reference to `x`.
let p_unique: &mut = &mut x;
// With an exclusive reference, we can mutate the contents for free.
*p_unique.get_mut = 0;
// Or, equivalently:
x = new;
// When we own the value, we can extract the contents for free.
let contents: i32 = x.into_inner;
assert_eq!;
Fields
value: T
Implementations
impl<T> UnsafeCell<T>
const fn new(value: T) -> UnsafeCell<T>Constructs a new instance of
UnsafeCellwhich will wrap the specified value.All access to the inner value through
&UnsafeCell<T>requiresunsafecode.Examples
use UnsafeCell; let uc = new;const fn into_inner(self) -> TUnwraps the value, consuming the cell.
Examples
use UnsafeCell; let uc = new; let five = uc.into_inner;const unsafe fn replace(&self, value: T) -> TReplace the value in this
UnsafeCelland return the old value.Safety
The caller must take care to avoid aliasing and data races.
- It is Undefined Behavior to allow calls to race with any other access to the wrapped value.
- It is Undefined Behavior to call this while any other reference(s) to the wrapped value are alive.
Examples
use UnsafeCell; let uc = new; let old = unsafe ; assert_eq!;
impl<T: ?Sized> UnsafeCell<T>
const fn from_mut(value: &mut T) -> &mut UnsafeCell<T>Converts from
&mut Tto&mut UnsafeCell<T>.Examples
use UnsafeCell; let mut val = 42; let uc = from_mut; *uc.get_mut -= 1; assert_eq!;const fn get(&self) -> *mut TGets a mutable pointer to the wrapped value.
This can be cast to a pointer of any kind. When creating (shared or mutable) references, you must uphold the aliasing rules; see [the type-level docs][UnsafeCell#aliasing-rules] for more discussion and caveats.
This is equivalent to casting
selfto a raw pointer and then casting that raw pointer to*mut T.Examples
use UnsafeCell; let uc = new; let five = uc.get;const fn get_mut(&mut self) -> &mut TReturns a mutable reference to the underlying data.
This call borrows the
UnsafeCellmutably (at compile-time) which guarantees that we possess the only reference.Examples
use UnsafeCell; let mut c = new; *c.get_mut += 1; assert_eq!;const fn raw_get(this: *const Self) -> *mut TGets a mutable pointer to the wrapped value. The difference from
getis 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. When creating (shared or mutable) references, you must uphold the aliasing rules; see [the type-level docs][UnsafeCell#aliasing-rules] for more discussion and caveats.
This is equivalent to casting
thisto*mut T.Examples
Gradual initialization of an
UnsafeCellrequiresraw_get, as callinggetwould require creating a reference to uninitialized data:use UnsafeCell; use MaybeUninit; let m = uninit; unsafe // avoid below which references to uninitialized data // unsafe { UnsafeCell::get(&*m.as_ptr()).write(5); } let uc = unsafe ; assert_eq!;const unsafe fn as_ref_unchecked(&self) -> &TGet a shared reference to the value within the
UnsafeCell.Safety
- It is Undefined Behavior to call this while any mutable reference to the wrapped value is alive.
- Mutating the wrapped value while the returned reference is alive is Undefined Behavior.
Examples
use UnsafeCell; let uc = new; let val = unsafe ; assert_eq!;const unsafe fn as_mut_unchecked(&self) -> &mut TGet an exclusive reference to the value within the
UnsafeCell.Safety
- It is Undefined Behavior to call this while any other reference(s) to the wrapped value are alive.
- Mutating the wrapped value through other means while the returned reference is alive is Undefined Behavior.
Examples
use UnsafeCell; let uc = new; unsafe assert_eq!;
Trait Implementations
impl<T> From<T> for UnsafeCell<T>
fn from(t: T) -> UnsafeCell<T>Creates a new
UnsafeCell<T>containing the given value.
impl<T: ?Sized> !RefUnwindSafe for UnsafeCell<T>
impl<T: ?Sized> !Sync for UnsafeCell<T>
impl<T: ?Sized> Debug for UnsafeCell<T>
fn fmt(&self, f: &mut Formatter<'_>) -> Result
impl<T: CoerceUnsized<U>, U> CoerceUnsized<UnsafeCell<U>> for UnsafeCell<T>
impl<T: DispatchFromDyn<U>, U> DispatchFromDyn<UnsafeCell<U>> for UnsafeCell<T>
impl<T: PointeeSized> !Freeze for UnsafeCell<T>
impl<T: ~const Default> Default for UnsafeCell<T>
fn default() -> UnsafeCell<T>Creates an
UnsafeCell, with theDefaultvalue for T.
Auto Trait Implementations
impl<T> Send for UnsafeCell<T>
where
T: Send + ?Sized,
impl<T> Unpin for UnsafeCell<T>
where
T: Unpin + ?Sized,
impl<T> UnsafeUnpin for UnsafeCell<T>
where
T: UnsafeUnpin + ?Sized,
impl<T> UnwindSafe for UnsafeCell<T>
where
T: UnwindSafe + ?Sized,
Blanket Implementations
impl<T> Any for UnsafeCell<T>
where
T: 'static + ?Sized,
fn type_id(&self) -> TypeId
impl<T> Borrow<T> for UnsafeCell<T>
where
T: ?Sized,
fn borrow(&self) -> &T
impl<T> BorrowMut<T> for UnsafeCell<T>
where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
impl<T> From<T> for UnsafeCell<T>
fn from(t: T) -> TReturns the argument unchanged.
impl<T> From<never> for UnsafeCell<T>
fn from(t: never) -> T
impl<T> SizeHint for UnsafeCell<T>
where
T: ?Sized,
fn lower_bound(&self) -> usizefn upper_bound(&self) -> Option<usize>
impl<T> SizedTypeProperties for UnsafeCell<T>
impl<T, U> Into<U> for UnsafeCell<T>
where
U: From<T>,
fn into(self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom<U> for UnsafeCell<T>
where
U: Into<T>,
type Error = Infallible;fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto<U> for UnsafeCell<T>
where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error;fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>