pub struct SyncUnsafeCell<T>(/* private fields */);Expand description
UnsafeCell + Sync implemented Don’t use this!
Implementations§
Trait Implementations§
Source§impl<T> Deref for SyncUnsafeCell<T>
impl<T> Deref for SyncUnsafeCell<T>
impl<T> Sync for SyncUnsafeCell<T>
Auto Trait Implementations§
impl<T> !Freeze for SyncUnsafeCell<T>
impl<T> !RefUnwindSafe for SyncUnsafeCell<T>
impl<T> Send for SyncUnsafeCell<T>where
T: Send,
impl<T> Unpin for SyncUnsafeCell<T>where
T: Unpin,
impl<T> UnwindSafe for SyncUnsafeCell<T>where
T: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more