pub struct CellMutHandle<'b, T> {
phantom: PhantomData<&'b mut T>,
}Fields§
§phantom: PhantomData<&'b mut T>Trait Implementations§
Source§impl<'a, 'b, T> BorrowPlace<&'a mut T> for CellMutHandle<'b, T>where
'b: 'a,
impl<'a, 'b, T> BorrowPlace<&'a mut T> for CellMutHandle<'b, T>where
'b: 'a,
Source§const ACCESS: AccessKind = AccessKind::Exclusive
const ACCESS: AccessKind = AccessKind::Exclusive
The access permissions to the place required by
Self::borrow.Source§type Timing = Lifetime<'a>
type Timing = Lifetime<'a>
The timing of the access permissions of
Self::borrow.Source§impl<'a, 'b, T> BorrowPlace<RefMut<'a, T>> for CellMutHandle<'b, T>where
'b: 'a,
impl<'a, 'b, T> BorrowPlace<RefMut<'a, T>> for CellMutHandle<'b, T>where
'b: 'a,
Source§const ACCESS: AccessKind = AccessKind::Exclusive
const ACCESS: AccessKind = AccessKind::Exclusive
The access permissions to the place required by
Self::borrow.Source§impl<T> PlaceHandle for CellMutHandle<'_, T>
impl<T> PlaceHandle for CellMutHandle<'_, T>
Auto Trait Implementations§
impl<'b, T> !UnwindSafe for CellMutHandle<'b, T>
impl<'b, T> Freeze for CellMutHandle<'b, T>
impl<'b, T> RefUnwindSafe for CellMutHandle<'b, T>where
T: RefUnwindSafe,
impl<'b, T> Send for CellMutHandle<'b, T>where
T: Send,
impl<'b, T> Sync for CellMutHandle<'b, T>where
T: Sync,
impl<'b, T> Unpin for CellMutHandle<'b, T>
impl<'b, T> UnsafeUnpin for CellMutHandle<'b, T>
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