pub enum BorrowedValueMut<'a, T: ?Sized> {
RefMut(&'a mut T),
MuLock(PyMutexGuard<'a, T>),
MappedMuLock(PyMappedMutexGuard<'a, T>),
WriteLock(PyRwLockWriteGuard<'a, T>),
MappedWriteLock(PyMappedRwLockWriteGuard<'a, T>),
}
Variants§
RefMut(&'a mut T)
MuLock(PyMutexGuard<'a, T>)
MappedMuLock(PyMappedMutexGuard<'a, T>)
WriteLock(PyRwLockWriteGuard<'a, T>)
MappedWriteLock(PyMappedRwLockWriteGuard<'a, T>)
Implementations§
Trait Implementations§
source§impl<T: ?Sized> Deref for BorrowedValueMut<'_, T>
impl<T: ?Sized> Deref for BorrowedValueMut<'_, T>
source§impl<T: ?Sized> DerefMut for BorrowedValueMut<'_, T>
impl<T: ?Sized> DerefMut for BorrowedValueMut<'_, T>
source§impl<'a, T: ?Sized> From<MappedMutexGuard<'a, RawCellMutex, T>> for BorrowedValueMut<'a, T>
impl<'a, T: ?Sized> From<MappedMutexGuard<'a, RawCellMutex, T>> for BorrowedValueMut<'a, T>
source§fn from(t: PyMappedMutexGuard<'a, T>) -> Self
fn from(t: PyMappedMutexGuard<'a, T>) -> Self
Converts to this type from the input type.
source§impl<'a, T: ?Sized> From<MappedRwLockWriteGuard<'a, RawCellRwLock, T>> for BorrowedValueMut<'a, T>
impl<'a, T: ?Sized> From<MappedRwLockWriteGuard<'a, RawCellRwLock, T>> for BorrowedValueMut<'a, T>
source§fn from(t: PyMappedRwLockWriteGuard<'a, T>) -> Self
fn from(t: PyMappedRwLockWriteGuard<'a, T>) -> Self
Converts to this type from the input type.
source§impl<'a, T: ?Sized> From<MutexGuard<'a, RawCellMutex, T>> for BorrowedValueMut<'a, T>
impl<'a, T: ?Sized> From<MutexGuard<'a, RawCellMutex, T>> for BorrowedValueMut<'a, T>
source§fn from(t: PyMutexGuard<'a, T>) -> Self
fn from(t: PyMutexGuard<'a, T>) -> Self
Converts to this type from the input type.
source§impl<'a, T: ?Sized> From<RwLockWriteGuard<'a, RawCellRwLock, T>> for BorrowedValueMut<'a, T>
impl<'a, T: ?Sized> From<RwLockWriteGuard<'a, RawCellRwLock, T>> for BorrowedValueMut<'a, T>
source§fn from(t: PyRwLockWriteGuard<'a, T>) -> Self
fn from(t: PyRwLockWriteGuard<'a, T>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<'a, T> Freeze for BorrowedValueMut<'a, T>where
T: ?Sized,
impl<'a, T> !RefUnwindSafe for BorrowedValueMut<'a, T>
impl<'a, T> !Send for BorrowedValueMut<'a, T>
impl<'a, T> !Sync for BorrowedValueMut<'a, T>
impl<'a, T> Unpin for BorrowedValueMut<'a, T>where
T: ?Sized,
impl<'a, T> !UnwindSafe for BorrowedValueMut<'a, 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