(self)
| 547 | type IntoIter = <Vec<T> as IntoIterator>::IntoIter; |
| 548 | #[inline] |
| 549 | fn into_iter(self) -> Self::IntoIter { |
| 550 | Vec::from(self).into_iter() |
| 551 | } |
| 552 | } |
| 553 | |
| 554 | /// A wrapper to achieve `FromIterator<T> for Result<SlimSliceBox<T>, Vec<T>>`. |
no outgoing calls