Home
last modified time | relevance | path

Searched defs:IntoIter (Results 1 – 3 of 3) sorted by relevance

/openbmc/linux/rust/alloc/vec/
H A Dinto_iter.rs35 pub struct IntoIter< struct
52 impl<T: fmt::Debug, A: Allocator> fmt::Debug for IntoIter<T, A> { implementation
58 impl<T, A: Allocator> IntoIter<T, A> { impl
174 impl<T, A: Allocator> AsRef<[T]> for IntoIter<T, A> { implementation
186 impl<T, A: Allocator> Iterator for IntoIter<T, A> { implementation
335 impl<T, A: Allocator> ExactSizeIterator for IntoIter<T, A> { implementation
342 impl<T, A: Allocator> FusedIterator for IntoIter<T, A> {} implementation
345 unsafe impl<T, A: Allocator> TrustedLen for IntoIter<T, A> {} implementation
348 impl<T, A> Default for IntoIter<T, A> implementation
432 unsafe impl<T, A: Allocator> SourceIter for IntoIter<T, A> { implementation
[all …]
H A Dmod.rs2948 type IntoIter = IntoIter<T, A>; typedef
2967 fn into_iter(self) -> Self::IntoIter { in into_iter()
2993 type IntoIter = slice::Iter<'a, T>; typedef
2995 fn into_iter(self) -> Self::IntoIter { in into_iter()
3003 type IntoIter = slice::IterMut<'a, T>; typedef
3005 fn into_iter(self) -> Self::IntoIter { in into_iter()
3184 pub fn splice<R, I>(&mut self, range: R, replace_with: I) -> Splice<'_, I::IntoIter, A> in splice()
/openbmc/linux/rust/macros/
H A Dhelpers.rs67 pub(crate) fn expect_end(it: &mut token_stream::IntoIter) { in expect_end()