Searched refs:is_send_sync (Results 1 – 2 of 2) sorted by relevance
/external/rust/crates/hashlink/tests/ |
D | linked_hash_map.rs | 451 fn is_send_sync<T: Send + Sync>() {} in test_send_sync() function 453 is_send_sync::<LinkedHashMap<u32, i32>>(); in test_send_sync() 454 is_send_sync::<linked_hash_map::Entry<u32, i32, ()>>(); in test_send_sync() 455 is_send_sync::<linked_hash_map::RawEntryBuilder<u32, i32, ()>>(); in test_send_sync() 456 is_send_sync::<linked_hash_map::RawEntryBuilderMut<u32, i32, ()>>(); in test_send_sync() 457 is_send_sync::<linked_hash_map::RawEntryMut<u32, i32, ()>>(); in test_send_sync() 458 is_send_sync::<linked_hash_map::Iter<u32, i32>>(); in test_send_sync() 459 is_send_sync::<linked_hash_map::IterMut<u32, i32>>(); in test_send_sync() 460 is_send_sync::<linked_hash_map::Drain<u32, i32>>(); in test_send_sync() 461 is_send_sync::<linked_hash_map::Keys<u32, i32>>(); in test_send_sync() [all …]
|
/external/rust/crates/linked-hash-map/tests/ |
D | test.rs | 418 fn is_send_sync<T: Send + Sync>() {} in test_send_sync() function 420 is_send_sync::<LinkedHashMap<u32, i32>>(); in test_send_sync() 421 is_send_sync::<linked_hash_map::Iter<u32, i32>>(); in test_send_sync() 422 is_send_sync::<linked_hash_map::IterMut<u32, i32>>(); in test_send_sync() 423 is_send_sync::<linked_hash_map::IntoIter<u32, i32>>(); in test_send_sync() 424 is_send_sync::<linked_hash_map::Keys<u32, i32>>(); in test_send_sync() 425 is_send_sync::<linked_hash_map::Values<u32, i32>>(); in test_send_sync()
|