Struct futures_util::lock::OwnedMutexGuard
source · [−]pub struct OwnedMutexGuard<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
sourceimpl<T: ?Sized + Debug> Debug for OwnedMutexGuard<T>
impl<T: ?Sized + Debug> Debug for OwnedMutexGuard<T>
sourceimpl<T: ?Sized> Deref for OwnedMutexGuard<T>
impl<T: ?Sized> Deref for OwnedMutexGuard<T>
sourceimpl<T: ?Sized> DerefMut for OwnedMutexGuard<T>
impl<T: ?Sized> DerefMut for OwnedMutexGuard<T>
sourceimpl<T: ?Sized> Drop for OwnedMutexGuard<T>
impl<T: ?Sized> Drop for OwnedMutexGuard<T>
impl<T: ?Sized + Send> Send for OwnedMutexGuard<T>
impl<T: ?Sized + Sync> Sync for OwnedMutexGuard<T>
Auto Trait Implementations
impl<T> !RefUnwindSafe for OwnedMutexGuard<T>
impl<T: ?Sized> Unpin for OwnedMutexGuard<T>
impl<T> !UnwindSafe for OwnedMutexGuard<T>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more