Searched refs:next_char (Results 1 – 2 of 2) sorted by relevance
155 next_char = value[i + 1]337 next_char = self.input[self.cur]338 if next_char == '[':340 elif _is_digit_or_minus(next_char):342 elif next_char == '"':354 next_char = self.input[self.cur]355 if not next_char.isalpha() and not next_char == '_':358 ident += next_char361 next_char = self.input[self.cur]362 while next_char.isalpha() or next_char.isdigit() or next_char == '_':[all …]
190 fn next_char(&mut self) -> Result<Option<u8>, Error> { in next_char() function604 if self.next_char()? == Some(b'{') { in deserialize_enum()609 if self.next_char()? == Some(b'}') { in deserialize_enum()