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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more