pub struct QueenCell<Q: QueenMut>(/* private fields */);Expand description
A wrapper for a MutQueen that implements Queen.
Interior mutability is enabled using an RwLock.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<Q> !Freeze for QueenCell<Q>
impl<Q> !RefUnwindSafe for QueenCell<Q>
impl<Q> Send for QueenCell<Q>
impl<Q> Sync for QueenCell<Q>
impl<Q> Unpin for QueenCell<Q>where
Q: Unpin,
impl<Q> UnsafeUnpin for QueenCell<Q>where
Q: UnsafeUnpin,
impl<Q> UnwindSafe for QueenCell<Q>where
Q: 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