pub struct MutexGuard<'a, T>where
T: 'a + ?Sized,{ /* private fields */ }
Expand description
A generic guard that will protect some data access and uses either a ticket lock or a normal spin mutex.
For more info see TicketMutexGuard
or SpinMutexGuard
.
Implementations§
Source§impl<'a, T> MutexGuard<'a, T>where
T: ?Sized,
impl<'a, T> MutexGuard<'a, T>where
T: ?Sized,
Sourcepub fn leak(this: MutexGuard<'a, T>) -> &'a mut T
pub fn leak(this: MutexGuard<'a, T>) -> &'a mut T
Leak the lock guard, yielding a mutable reference to the underlying data.
Note that this function will permanently lock the original Mutex
.
let mylock = spin::Mutex::new(0);
let data: &mut i32 = spin::MutexGuard::leak(mylock.lock());
*data = 1;
assert_eq!(*data, 1);
Trait Implementations§
Source§impl<'a, T> Debug for MutexGuard<'a, T>
impl<'a, T> Debug for MutexGuard<'a, T>
Source§impl<'a, T> Deref for MutexGuard<'a, T>where
T: ?Sized,
impl<'a, T> Deref for MutexGuard<'a, T>where
T: ?Sized,
Source§impl<'a, T> DerefMut for MutexGuard<'a, T>where
T: ?Sized,
impl<'a, T> DerefMut for MutexGuard<'a, T>where
T: ?Sized,
Auto Trait Implementations§
impl<'a, T> Freeze for MutexGuard<'a, T>where
T: ?Sized,
impl<'a, T> RefUnwindSafe for MutexGuard<'a, T>where
T: RefUnwindSafe + ?Sized,
impl<'a, T> Send for MutexGuard<'a, T>
impl<'a, T> Sync for MutexGuard<'a, T>
impl<'a, T> Unpin for MutexGuard<'a, T>where
T: ?Sized,
impl<'a, T> UnwindSafe for MutexGuard<'a, T>where
T: RefUnwindSafe + ?Sized,
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