(self)
| 84 | type Item = WtoComponent; |
| 85 | type IntoIter = std::vec::IntoIter<Self::Item>; |
| 86 | fn into_iter(self) -> Self::IntoIter { |
| 87 | self.component.into_iter() |
| 88 | } |
| 89 | } |
| 90 | |
| 91 | impl<'a> IntoIterator for &'a WtoCircle { |
no outgoing calls
no test coverage detected