Home
last modified time | relevance | path

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

/openbmc/linux/rust/alloc/collections/
H A Dmod.rs153 trait SpecExtend<I: IntoIterator> {
/openbmc/linux/rust/alloc/vec/
H A Dmod.rs2940 fn from_iter<I: IntoIterator<Item = T>>(iter: I) -> Vec<T> { in from_iter()
2946 impl<T, A: Allocator> IntoIterator for Vec<T, A> {
2991 impl<'a, T, A: Allocator> IntoIterator for &'a Vec<T, A> { impl
3001 impl<'a, T, A: Allocator> IntoIterator for &'a mut Vec<T, A> { impl
3014 fn extend<I: IntoIterator<Item = T>>(&mut self, iter: I) { in extend()
3187 I: IntoIterator<Item = T>, in splice()
3267 fn extend<I: IntoIterator<Item = &'a T>>(&mut self, iter: I) { in extend()
/openbmc/linux/rust/alloc/
H A Dboxed.rs2038 fn from_iter<T: IntoIterator<Item = I>>(iter: T) -> Self { in from_iter()