Home
last modified time | relevance | path

Searched defs:MutexGuard (Results 1 – 1 of 1) sorted by relevance

/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/sync/
H A Dmutex.rs142 pub struct MutexGuard<'a, T: ?Sized>(&'a Mutex<T>); struct
144 impl<T: ?Sized> MutexGuard<'_, T> { impl
151 unsafe impl<T: ?Sized + Send + Sync> Sync for MutexGuard<'_, T> {} implementation
154 impl<T: ?Sized> Drop for MutexGuard<'_, T> { implementation
160 impl<T: ?Sized + fmt::Debug> fmt::Debug for MutexGuard<'_, T> { implementation
166 impl<T: ?Sized + Display> Display for MutexGuard<'_, T> { implementation
172 impl<T: ?Sized> Deref for MutexGuard<'_, T> { implementation
179 impl<T: ?Sized> DerefMut for MutexGuard<'_, T> { implementation