Struct std::cell::SyncUnsafeCell
source · [−]#[repr(transparent)]pub struct SyncUnsafeCell<T> where
T: ?Sized, { /* private fields */ }Expand description
UnsafeCell, but Sync.
This is just an UnsafeCell, except it implements Sync
if T implements Sync.
UnsafeCell doesn’t implement Sync, to prevent accidental mis-use.
You can use SyncUnsafeCell instead of UnsafeCell to allow it to be
shared between threads, if that’s intentional.
Providing proper synchronization is still the task of the user,
making this type just as unsafe to use.
See UnsafeCell for details.
Implementations
impl<T> SyncUnsafeCell<T>
source
impl<T> SyncUnsafeCell<T>
sourcepub const fn new(value: T) -> SyncUnsafeCell<T>
source
pub const fn new(value: T) -> SyncUnsafeCell<T>
sourceConstructs a new instance of SyncUnsafeCell which will wrap the specified value.
pub const fn into_inner(self) -> T
source
pub const fn into_inner(self) -> T
sourceUnwraps the value.
impl<T> SyncUnsafeCell<T> where
T: ?Sized,
source
impl<T> SyncUnsafeCell<T> where
T: ?Sized,
sourcepub const fn get(&self) -> *mut T
source
pub const fn get(&self) -> *mut T
sourceGets a mutable pointer to the wrapped value.
This 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
pub const fn get_mut(&mut self) -> &mut T
source
pub const fn get_mut(&mut self) -> &mut T
sourceReturns a mutable reference to the underlying data.
This call borrows the SyncUnsafeCell mutably (at compile-time) which
guarantees that we possess the only reference.
pub const fn raw_get(this: *const SyncUnsafeCell<T>) -> *mut T
source
pub const fn raw_get(this: *const SyncUnsafeCell<T>) -> *mut T
sourceGets a mutable pointer to the wrapped value.
See UnsafeCell::get for details.
Trait Implementations
impl<T> Debug for SyncUnsafeCell<T> where
T: ?Sized,
source
impl<T> Debug for SyncUnsafeCell<T> where
T: ?Sized,
sourceimpl<T> Default for SyncUnsafeCell<T> where
T: Default,
source
impl<T> Default for SyncUnsafeCell<T> where
T: Default,
sourcefn default() -> SyncUnsafeCell<T>
source
fn default() -> SyncUnsafeCell<T>
sourceCreates an SyncUnsafeCell, with the Default value for T.
impl<T> From<T> for SyncUnsafeCell<T>
const: unstable · source
impl<T> From<T> for SyncUnsafeCell<T>
const: unstable · sourcefn from(t: T) -> SyncUnsafeCell<T>
const: unstable · source
fn from(t: T) -> SyncUnsafeCell<T>
const: unstable · sourceCreates a new SyncUnsafeCell<T> containing the given value.
impl<T, U> CoerceUnsized<SyncUnsafeCell<U>> for SyncUnsafeCell<T> where
T: CoerceUnsized<U>,
sourceimpl<T> Sync for SyncUnsafeCell<T> where
T: Sync + ?Sized,
sourceAuto Trait Implementations
impl<T> !RefUnwindSafe for SyncUnsafeCell<T>
impl<T: ?Sized> Send for SyncUnsafeCell<T> where
T: Send,
impl<T: ?Sized> Unpin for SyncUnsafeCell<T> where
T: Unpin,
impl<T: ?Sized> UnwindSafe for SyncUnsafeCell<T> where
T: UnwindSafe,
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
source
impl<T> BorrowMut<T> for T where
T: ?Sized,
sourcefn borrow_mut(&mut self) -> &mut T
const: unstable · source
fn borrow_mut(&mut self) -> &mut T
const: unstable · sourceMutably borrows from an owned value. Read more