Struct spin::mutex::MutexGuard
source · [−]pub struct MutexGuard<'a, 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
sourceimpl<'a, T: ?Sized> MutexGuard<'a, T>
impl<'a, T: ?Sized> MutexGuard<'a, T>
sourcepub fn leak(this: Self) -> &'a mut T
pub fn leak(this: Self) -> &'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
sourceimpl<'a, T: ?Sized + Debug> Debug for MutexGuard<'a, T>
impl<'a, T: ?Sized + Debug> Debug for MutexGuard<'a, T>
sourceimpl<'a, T: ?Sized> Deref for MutexGuard<'a, T>
impl<'a, T: ?Sized> Deref for MutexGuard<'a, T>
sourceimpl<'a, T: ?Sized> DerefMut for MutexGuard<'a, T>
impl<'a, T: ?Sized> DerefMut for MutexGuard<'a, T>
Auto Trait Implementations
impl<'a, T: ?Sized> RefUnwindSafe for MutexGuard<'a, T> where
T: RefUnwindSafe,
impl<'a, T: ?Sized> Send for MutexGuard<'a, T> where
T: Send,
impl<'a, T: ?Sized> Sync for MutexGuard<'a, T> where
T: Sync,
impl<'a, T: ?Sized> Unpin for MutexGuard<'a, T>
impl<'a, T> !UnwindSafe for MutexGuard<'a, T>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more