Searched refs:RawIntoIter (Results 1 – 3 of 3) sorted by relevance
/external/rust/crates/hashbrown/src/raw/ |
D | mod.rs | 1089 pub unsafe fn into_iter_from(self, iter: RawIter<T>) -> RawIntoIter<T, A> { in into_iter_from() 1094 RawIntoIter { in into_iter_from() 1686 type IntoIter = RawIntoIter<T, A>; 1689 fn into_iter(self) -> RawIntoIter<T, A> { in into_iter() 2019 pub struct RawIntoIter<T, A: Allocator + Clone = Global> { struct 2026 impl<T, A: Allocator + Clone> RawIntoIter<T, A> { argument 2033 unsafe impl<T, A: Allocator + Clone> Send for RawIntoIter<T, A> where T: Send {} implementation 2034 unsafe impl<T, A: Allocator + Clone> Sync for RawIntoIter<T, A> where T: Sync {} implementation 2037 unsafe impl<#[may_dangle] T, A: Allocator + Clone> Drop for RawIntoIter<T, A> { implementation 2052 impl<T, A: Allocator + Clone> Drop for RawIntoIter<T, A> { implementation [all …]
|
/external/rust/crates/hashbrown/ |
D | CHANGELOG.md | 98 `RawIntoIter`, and `RawParIter`. (#175)
|
/external/rust/crates/hashbrown/src/ |
D | map.rs | 1 use crate::raw::{Allocator, Bucket, Global, RawDrain, RawIntoIter, RawIter, RawTable}; 1564 inner: RawIntoIter<(K, V), A>,
|