pub struct CellMutex(/* private fields */);
Trait Implementations§
Source§impl RawMutex for CellMutex
impl RawMutex for CellMutex
Source§type GuardMarker = GuardNoSend
type GuardMarker = GuardNoSend
Marker type which determines whether a lock guard should be
Send
. Use
one of the GuardSend
or GuardNoSend
helper types here.Auto Trait Implementations§
impl !Freeze for CellMutex
impl !RefUnwindSafe for CellMutex
impl Send for CellMutex
impl !Sync for CellMutex
impl Unpin for CellMutex
impl UnwindSafe for CellMutex
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