Struct spin::mutex::SpinMutexGuard
source · [−]pub struct SpinMutexGuard<'a, T: ?Sized + 'a> { /* private fields */ }
Expand description
A guard that provides mutable data access.
When the guard falls out of scope it will release the lock.
Implementations
sourceimpl<'a, T: ?Sized> SpinMutexGuard<'a, T>
impl<'a, T: ?Sized> SpinMutexGuard<'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 SpinMutex
.
let mylock = spin::mutex::SpinMutex::new(0);
let data: &mut i32 = spin::mutex::SpinMutexGuard::leak(mylock.lock());
*data = 1;
assert_eq!(*data, 1);
Trait Implementations
sourceimpl<'a, T: ?Sized + Debug> Debug for SpinMutexGuard<'a, T>
impl<'a, T: ?Sized + Debug> Debug for SpinMutexGuard<'a, T>
sourceimpl<'a, T: ?Sized> Deref for SpinMutexGuard<'a, T>
impl<'a, T: ?Sized> Deref for SpinMutexGuard<'a, T>
sourceimpl<'a, T: ?Sized> DerefMut for SpinMutexGuard<'a, T>
impl<'a, T: ?Sized> DerefMut for SpinMutexGuard<'a, T>
sourceimpl<'a, T: ?Sized + Display> Display for SpinMutexGuard<'a, T>
impl<'a, T: ?Sized + Display> Display for SpinMutexGuard<'a, T>
Auto Trait Implementations
impl<'a, T: ?Sized> RefUnwindSafe for SpinMutexGuard<'a, T> where
T: RefUnwindSafe,
impl<'a, T: ?Sized> Send for SpinMutexGuard<'a, T> where
T: Send,
impl<'a, T: ?Sized> Sync for SpinMutexGuard<'a, T> where
T: Sync,
impl<'a, T: ?Sized> Unpin for SpinMutexGuard<'a, T>
impl<'a, T> !UnwindSafe for SpinMutexGuard<'a, T>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more