pub struct MutexGuard<'g, T>(/* private fields */)
where
T: DebugIdentify;Trait Implementations§
Source§impl<'g, T> Debug for MutexGuard<'g, T>where
T: DebugIdentify + Debug,
impl<'g, T> Debug for MutexGuard<'g, T>where
T: DebugIdentify + Debug,
Source§impl<'g, T> Deref for MutexGuard<'g, T>where
T: DebugIdentify,
impl<'g, T> Deref for MutexGuard<'g, T>where
T: DebugIdentify,
Source§impl<'g, T> DerefMut for MutexGuard<'g, T>where
T: DebugIdentify,
impl<'g, T> DerefMut for MutexGuard<'g, T>where
T: DebugIdentify,
Source§impl<'g, T> Display for MutexGuard<'g, T>
impl<'g, T> Display for MutexGuard<'g, T>
Source§impl<'g, T> Drop for MutexGuard<'g, T>where
T: DebugIdentify,
impl<'g, T> Drop for MutexGuard<'g, T>where
T: DebugIdentify,
Auto Trait Implementations§
impl<'g, T> Freeze for MutexGuard<'g, T>
impl<'g, T> !RefUnwindSafe for MutexGuard<'g, T>
impl<'g, T> !Send for MutexGuard<'g, T>
impl<'g, T> Sync for MutexGuard<'g, T>where
T: Sync,
impl<'g, T> Unpin for MutexGuard<'g, T>
impl<'g, T> UnsafeUnpin for MutexGuard<'g, T>
impl<'g, T> !UnwindSafe for MutexGuard<'g, 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