Searched defs:RwLockWriteGuard (Results 1 – 1 of 1) sorted by relevance
/DragonOS-0.1.7/kernel/src/libs/ |
D | rwlock.rs | 56 pub struct RwLockWriteGuard<'a, T: 'a> { struct 57 data: *mut T, 58 inner: &'a RwLock<T>, 340 impl<'rwlock, T> RwLockWriteGuard<'rwlock, T> { implementation 407 impl<'rwlock, T> Deref for RwLockWriteGuard<'rwlock, T> { implementation 415 impl<'rwlock, T> DerefMut for RwLockWriteGuard<'rwlock, T> { implementation 439 impl<'rwlock, T> Drop for RwLockWriteGuard<'rwlock, T> { implementation
|