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.