pub struct RtMutexGuard<'a, T> { /* private fields */ }Available on crate feature
std only.Expand description
RAII guard of an RtMutex; releases the lock priority-correctly on drop.
Implementations§
Trait Implementations§
Source§impl<'a, T: Debug> Debug for RtMutexGuard<'a, T>
impl<'a, T: Debug> Debug for RtMutexGuard<'a, T>
Source§impl<T> Deref for RtMutexGuard<'_, T>
impl<T> Deref for RtMutexGuard<'_, T>
Source§impl<T> DerefMut for RtMutexGuard<'_, T>
impl<T> DerefMut for RtMutexGuard<'_, T>
Source§impl<T> Drop for RtMutexGuard<'_, T>
impl<T> Drop for RtMutexGuard<'_, T>
Auto Trait Implementations§
impl<'a, T> !Send for RtMutexGuard<'a, T>
impl<'a, T> Freeze for RtMutexGuard<'a, T>
impl<'a, T> RefUnwindSafe for RtMutexGuard<'a, T>
impl<'a, T> Sync for RtMutexGuard<'a, T>
impl<'a, T> Unpin for RtMutexGuard<'a, T>
impl<'a, T> UnsafeUnpin for RtMutexGuard<'a, T>
impl<'a, T> UnwindSafe for RtMutexGuard<'a, T>
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