Searched defs:RawDrain (Results 1 – 1 of 1) sorted by relevance
| /external/rust/crates/hashbrown/src/raw/ |
| D | mod.rs | 2255 pub struct RawDrain<'a, T, A: Allocator + Clone = Global> { struct 2264 // We don't use a &'a mut RawTable<T> because we want RawDrain to be argument 2269 impl<T, A: Allocator + Clone> RawDrain<'_, T, A> { implementation 2276 unsafe impl<T, A: Allocator + Copy> Send for RawDrain<'_, T, A> implementation 2282 unsafe impl<T, A: Allocator + Copy> Sync for RawDrain<'_, T, A> implementation 2289 impl<T, A: Allocator + Clone> Drop for RawDrain<'_, T, A> { implementation 2308 impl<T, A: Allocator + Clone> Iterator for RawDrain<'_, T, A> { implementation 2325 impl<T, A: Allocator + Clone> ExactSizeIterator for RawDrain<'_, T, A> {} implementation 2326 impl<T, A: Allocator + Clone> FusedIterator for RawDrain<'_, T, A> {} implementation
|