Struct futures::lock::OwnedMutexGuard
source · pub struct OwnedMutexGuard<T>where
T: ?Sized,{ /* private fields */ }
Expand description
An RAII guard returned by the lock_owned
and try_lock_owned
methods.
When this structure is dropped (falls out of scope), the lock will be
unlocked.
Trait Implementations§
source§impl<T> Debug for OwnedMutexGuard<T>
impl<T> Debug for OwnedMutexGuard<T>
source§impl<T> Deref for OwnedMutexGuard<T>where
T: ?Sized,
impl<T> Deref for OwnedMutexGuard<T>where
T: ?Sized,
source§impl<T> DerefMut for OwnedMutexGuard<T>where
T: ?Sized,
impl<T> DerefMut for OwnedMutexGuard<T>where
T: ?Sized,
source§impl<T> Drop for OwnedMutexGuard<T>where
T: ?Sized,
impl<T> Drop for OwnedMutexGuard<T>where
T: ?Sized,
impl<T> Send for OwnedMutexGuard<T>
impl<T> Sync for OwnedMutexGuard<T>
Auto Trait Implementations§
impl<T> Freeze for OwnedMutexGuard<T>where
T: ?Sized,
impl<T> !RefUnwindSafe for OwnedMutexGuard<T>
impl<T> Unpin for OwnedMutexGuard<T>where
T: ?Sized,
impl<T> !UnwindSafe for OwnedMutexGuard<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