Home
last modified time | relevance | path

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

/external/rust/crates/tokio/src/sync/
Drwlock.rs102 fn check_send<T: Send>() {} in bounds() function
108 check_send::<RwLock<u32>>(); in bounds()
112 check_send::<RwLockReadGuard<'_, u32>>(); in bounds()
116 check_send::<OwnedRwLockReadGuard<u32, i32>>(); in bounds()
120 check_send::<RwLockWriteGuard<'_, u32>>(); in bounds()
124 check_send::<RwLockMappedWriteGuard<'_, u32>>(); in bounds()
128 check_send::<OwnedRwLockWriteGuard<u32>>(); in bounds()
132 check_send::<OwnedRwLockMappedWriteGuard<u32, i32>>(); in bounds()
Dmutex.rs199 fn check_send<T: Send>() {} in bounds() function
207 check_send::<MutexGuard<'_, u32>>(); in bounds()
208 check_send::<OwnedMutexGuard<u32>>(); in bounds()
/external/rust/crates/quiche/src/
Dlib.rs6646 fn check_send(_: &mut impl Send) {} in check_send() function
6651 check_send(&mut pipe.client); in connection_must_be_send()