pub fn try_convert_all<T, U, I>(into_iter: I) -> Result<Vec<U>, T::Error>where
    I: IntoIterator<Item = T>,
    T: TryInto<U>,
Expand description

Tries to convert a series of Ts to Us, returning an error at the first failure.