(self)
| 222 | type IntoIter = <smallvec::SmallVec<[E; 1]> as IntoIterator>::IntoIter; |
| 223 | |
| 224 | fn into_iter(self) -> Self::IntoIter { |
| 225 | self.0.into_iter() |
| 226 | } |
| 227 | } |
| 228 | |
| 229 | impl<E> From<E> for ErrorStream<E> { |
no outgoing calls
no test coverage detected