pub struct MutexGuard<'a, T>(/* private fields */);Expand description
A guard that releases the mutex when dropped.
Implementations§
Source§impl<'a, T> MutexGuard<'a, T>
impl<'a, T> MutexGuard<'a, T>
Sourcepub fn source(guard: &MutexGuard<'a, T>) -> &'a Mutex<T>
pub fn source(guard: &MutexGuard<'a, T>) -> &'a Mutex<T>
Returns a reference to the mutex a guard came from.
§Examples
use simple_mutex::{Mutex, MutexGuard};
let mutex = Mutex::new(10i32);
let guard = mutex.lock();
dbg!(MutexGuard::source(&guard));Trait Implementations§
Source§impl<T: Debug> Debug for MutexGuard<'_, T>
impl<T: Debug> Debug for MutexGuard<'_, T>
Source§impl<T> Deref for MutexGuard<'_, T>
impl<T> Deref for MutexGuard<'_, T>
Source§impl<T> DerefMut for MutexGuard<'_, T>
impl<T> DerefMut for MutexGuard<'_, T>
Source§impl<T: Display> Display for MutexGuard<'_, T>
impl<T: Display> Display for MutexGuard<'_, T>
Source§impl<T> Drop for MutexGuard<'_, T>
impl<T> Drop for MutexGuard<'_, T>
impl<T: Send> Send for MutexGuard<'_, T>
impl<T: Sync> Sync for MutexGuard<'_, T>
Auto Trait Implementations§
impl<'a, T> Freeze for MutexGuard<'a, T>
impl<'a, T> !RefUnwindSafe for MutexGuard<'a, T>
impl<'a, T> Unpin for MutexGuard<'a, T>
impl<'a, T> !UnwindSafe for MutexGuard<'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