Struct spin::mutex::TicketMutexGuard
source · [−]pub struct TicketMutexGuard<'a, T: ?Sized + 'a> { /* private fields */ }
Expand description
A guard that protects some data.
When the guard is dropped, the next ticket will be processed.
Implementations
sourceimpl<'a, T: ?Sized> TicketMutexGuard<'a, T>
impl<'a, T: ?Sized> TicketMutexGuard<'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 TicketMutex
.
let mylock = spin::mutex::TicketMutex::new(0);
let data: &mut i32 = spin::mutex::TicketMutexGuard::leak(mylock.lock());
*data = 1;
assert_eq!(*data, 1);
Trait Implementations
sourceimpl<'a, T: ?Sized + Debug> Debug for TicketMutexGuard<'a, T>
impl<'a, T: ?Sized + Debug> Debug for TicketMutexGuard<'a, T>
sourceimpl<'a, T: ?Sized> Deref for TicketMutexGuard<'a, T>
impl<'a, T: ?Sized> Deref for TicketMutexGuard<'a, T>
sourceimpl<'a, T: ?Sized> DerefMut for TicketMutexGuard<'a, T>
impl<'a, T: ?Sized> DerefMut for TicketMutexGuard<'a, T>
sourceimpl<'a, T: ?Sized + Display> Display for TicketMutexGuard<'a, T>
impl<'a, T: ?Sized + Display> Display for TicketMutexGuard<'a, T>
Auto Trait Implementations
impl<'a, T: ?Sized> RefUnwindSafe for TicketMutexGuard<'a, T> where
T: RefUnwindSafe,
impl<'a, T: ?Sized> Send for TicketMutexGuard<'a, T> where
T: Send,
impl<'a, T: ?Sized> Sync for TicketMutexGuard<'a, T> where
T: Sync,
impl<'a, T: ?Sized> Unpin for TicketMutexGuard<'a, T>
impl<'a, T> !UnwindSafe for TicketMutexGuard<'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