Home
last modified time | relevance | path

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

/external/rust/crates/lock_api/src/
Drwlock.rs1641 pub struct MappedRwLockWriteGuard<'a, R: RawRwLock, T: ?Sized> { struct
1647 unsafe impl<'a, R: RawRwLock + 'a, T: ?Sized + Sync + 'a> Sync
1648 for MappedRwLockWriteGuard<'a, R, T> argument
1651 unsafe impl<'a, R: RawRwLock + 'a, T: ?Sized + Send + 'a> Send for MappedRwLockWriteGuard<'a, R, T>… implementation
1656 impl<'a, R: RawRwLock + 'a, T: ?Sized + 'a> MappedRwLockWriteGuard<'a, R, T> { impl
1708 impl<'a, R: RawRwLockFair + 'a, T: ?Sized + 'a> MappedRwLockWriteGuard<'a, R, T> { implementation
1731 impl<'a, R: RawRwLock + 'a, T: ?Sized + 'a> Deref for MappedRwLockWriteGuard<'a, R, T> { implementation
1739 impl<'a, R: RawRwLock + 'a, T: ?Sized + 'a> DerefMut for MappedRwLockWriteGuard<'a, R, T> { implementation
1746 impl<'a, R: RawRwLock + 'a, T: ?Sized + 'a> Drop for MappedRwLockWriteGuard<'a, R, T> { implementation
1756 impl<'a, R: RawRwLock + 'a, T: fmt::Debug + ?Sized + 'a> fmt::Debug
[all …]
/external/rust/crates/parking_lot/src/
Drwlock.rs122 pub type MappedRwLockWriteGuard<'a, T> = lock_api::MappedRwLockWriteGuard<'a, RawRwLock, T>; typedef