pub enum BorrowedValue<'a, T: ?Sized> {
Ref(&'a T),
MuLock(PyMutexGuard<'a, T>),
MappedMuLock(PyImmutableMappedMutexGuard<'a, T>),
ReadLock(PyRwLockReadGuard<'a, T>),
MappedReadLock(PyMappedRwLockReadGuard<'a, T>),
}
Variants§
Ref(&'a T)
MuLock(PyMutexGuard<'a, T>)
MappedMuLock(PyImmutableMappedMutexGuard<'a, T>)
ReadLock(PyRwLockReadGuard<'a, T>)
MappedReadLock(PyMappedRwLockReadGuard<'a, T>)
Implementations§
Trait Implementations§
Source§impl<T: ?Sized> Deref for BorrowedValue<'_, T>
impl<T: ?Sized> Deref for BorrowedValue<'_, T>
Source§impl Display for BorrowedValue<'_, str>
impl Display for BorrowedValue<'_, str>
Source§impl<'a, T: ?Sized> From<ImmutableMappedMutexGuard<'a, RawCellMutex, T>> for BorrowedValue<'a, T>
impl<'a, T: ?Sized> From<ImmutableMappedMutexGuard<'a, RawCellMutex, T>> for BorrowedValue<'a, T>
Source§fn from(t: PyImmutableMappedMutexGuard<'a, T>) -> Self
fn from(t: PyImmutableMappedMutexGuard<'a, T>) -> Self
Converts to this type from the input type.
Source§impl<'a, T: ?Sized> From<MappedRwLockReadGuard<'a, RawCellRwLock, T>> for BorrowedValue<'a, T>
impl<'a, T: ?Sized> From<MappedRwLockReadGuard<'a, RawCellRwLock, T>> for BorrowedValue<'a, T>
Source§fn from(t: PyMappedRwLockReadGuard<'a, T>) -> Self
fn from(t: PyMappedRwLockReadGuard<'a, T>) -> Self
Converts to this type from the input type.
Source§impl<'a, T: ?Sized> From<MutexGuard<'a, RawCellMutex, T>> for BorrowedValue<'a, T>
impl<'a, T: ?Sized> From<MutexGuard<'a, RawCellMutex, T>> for BorrowedValue<'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<RwLockReadGuard<'a, RawCellRwLock, T>> for BorrowedValue<'a, T>
impl<'a, T: ?Sized> From<RwLockReadGuard<'a, RawCellRwLock, T>> for BorrowedValue<'a, T>
Source§fn from(t: PyRwLockReadGuard<'a, T>) -> Self
fn from(t: PyRwLockReadGuard<'a, T>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<'a, T> Freeze for BorrowedValue<'a, T>where
T: ?Sized,
impl<'a, T> !RefUnwindSafe for BorrowedValue<'a, T>
impl<'a, T> !Send for BorrowedValue<'a, T>
impl<'a, T> !Sync for BorrowedValue<'a, T>
impl<'a, T> Unpin for BorrowedValue<'a, T>where
T: ?Sized,
impl<'a, T> !UnwindSafe for BorrowedValue<'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