pub fn try_decode_iter_char<E>( offset: usize, iter: &mut impl Iterator<Item = Result<u8, E>>, ) -> Result<Option<(char, u8)>, E>where E: From<Utf8Error>,
Read the next Unicode character out of the given fallible byte iterator.