Home
last modified time | relevance | path

Searched refs:check_unpin (Results 1 – 3 of 3) sorted by relevance

/external/rust/crates/tokio/src/sync/
Drwlock.rs104 fn check_unpin<T: Unpin>() {} in bounds() function
110 check_unpin::<RwLock<u32>>(); in bounds()
114 check_unpin::<RwLockReadGuard<'_, u32>>(); in bounds()
118 check_unpin::<OwnedRwLockReadGuard<u32, i32>>(); in bounds()
122 check_unpin::<RwLockWriteGuard<'_, u32>>(); in bounds()
126 check_unpin::<RwLockMappedWriteGuard<'_, u32>>(); in bounds()
130 check_unpin::<OwnedRwLockWriteGuard<u32>>(); in bounds()
134 check_unpin::<OwnedRwLockMappedWriteGuard<u32, i32>>(); in bounds()
Dsemaphore.rs61 fn check_unpin<T: Unpin>() {} in bounds() function
65 check_unpin::<Semaphore>(); in bounds()
66 check_unpin::<SemaphorePermit<'_>>(); in bounds()
Dmutex.rs200 fn check_unpin<T: Unpin>() {} in bounds() function
209 check_unpin::<Mutex<u32>>(); in bounds()