pub struct Cell<T> {
pub(crate) data: MaybeUninit<T>,
pub(crate) sequence: AtomicUsize,
}
Fields§
§data: MaybeUninit<T>
§sequence: AtomicUsize
Implementations§
Auto Trait Implementations§
impl<T> !Freeze for Cell<T>
impl<T> RefUnwindSafe for Cell<T>where
T: RefUnwindSafe,
impl<T> Send for Cell<T>where
T: Send,
impl<T> Sync for Cell<T>where
T: Sync,
impl<T> Unpin for Cell<T>where
T: Unpin,
impl<T> UnwindSafe for Cell<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