(&mut self)
| 755 | type Item = Option<&'r str>; |
| 756 | |
| 757 | fn next(&mut self) -> Option<Option<&'r str>> { |
| 758 | self.0 |
| 759 | .next() |
| 760 | .as_ref() |
| 761 | .map(|slot| slot.as_ref().map(|name| name.as_ref())) |
| 762 | } |
| 763 | |
| 764 | fn size_hint(&self) -> (usize, Option<usize>) { |
| 765 | self.0.size_hint() |