[−][src]Struct spin::mutex::MutexGuard
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
impl<'a, T: ?Sized> MutexGuard<'a, T>
[src]
pub fn leak(this: Self) -> &'a mut T
[src]
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
impl<'a, T: ?Sized + Debug> Debug for MutexGuard<'a, T>
[src]
impl<'a, T: ?Sized> Deref for MutexGuard<'a, T>
[src]
impl<'a, T: ?Sized> DerefMut for MutexGuard<'a, T>
[src]
impl<'a, T: ?Sized + Display> Display for MutexGuard<'a, T>
[src]
Auto Trait Implementations
impl<'a, T: ?Sized> Send for MutexGuard<'a, T> where
T: Send,
[src]
T: Send,
impl<'a, T: ?Sized> Sync for MutexGuard<'a, T> where
T: Sync,
[src]
T: Sync,
impl<'a, T: ?Sized> Unpin for MutexGuard<'a, T>
[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,