Home
last modified time | relevance | path

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

/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/sync/
H A Drwlock.rs250 pub struct RwLockReadGuard<'a, T: ?Sized>(&'a RwLock<T>); struct
252 unsafe impl<T: ?Sized + Send> Send for RwLockReadGuard<'_, T> {} implementation
253 unsafe impl<T: ?Sized + Sync> Sync for RwLockReadGuard<'_, T> {} implementation
257 impl<T: ?Sized> RwLockReadGuard<'_, T> { impl
268 impl<T: ?Sized> Drop for RwLockReadGuard<'_, T> { implementation
274 impl<T: ?Sized> Deref for RwLockReadGuard<'_, T> { implementation
282 impl<T: ?Sized + fmt::Debug> fmt::Debug for RwLockReadGuard<'_, T> { implementation
288 impl<T: ?Sized + fmt::Display> fmt::Display for RwLockReadGuard<'_, T> { implementation