pub fn from_strings<I, T, C>( strings: I, conv: C, ) -> impl Iterator<Item = Result<T, Error>>where I: Iterator<Item = Result<String, Error>>, C: Fn(Result<String, Error>) -> Result<T, Error>,