pub struct MutexGuardArc<T> { /* private fields */ }
Expand description
A write guard for an Arc<Mutex>
Implementations§
Source§impl<T> MutexGuardArc<T>
impl<T> MutexGuardArc<T>
Trait Implementations§
Source§impl<T: Debug> Debug for MutexGuardArc<T>
impl<T: Debug> Debug for MutexGuardArc<T>
Source§impl<T> Deref for MutexGuardArc<T>
impl<T> Deref for MutexGuardArc<T>
Source§impl<T> DerefMut for MutexGuardArc<T>
impl<T> DerefMut for MutexGuardArc<T>
Source§impl<T> Drop for MutexGuardArc<T>
impl<T> Drop for MutexGuardArc<T>
impl<T: Send> Send for MutexGuardArc<T>
impl<T: Sync> Sync for MutexGuardArc<T>
Auto Trait Implementations§
impl<T> Freeze for MutexGuardArc<T>
impl<T> RefUnwindSafe for MutexGuardArc<T>
impl<T> Unpin for MutexGuardArc<T>
impl<T> UnwindSafe for MutexGuardArc<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