pub fn unwrap_items<T: Debug, E: Debug, I: Iterator<Item = Result<T, E>> + Sized>( iter: I, ) -> impl Iterator<Item = T>
Unwraps each item Result<T, E> into T, panicking if an error is reached
Result<T, E>