Searched defs:JsonParseError (Results 1 – 4 of 4) sorted by relevance
17 pub struct JsonParseError { struct23 impl JsonParseError { argument24 fn new(msg: String, line: usize, col: usize) -> JsonParseError { in new()51 impl fmt::Display for JsonParseError { implementation61 impl std::error::Error for JsonParseError {} implementation109 fn err<T>(&self, msg: String) -> Result<T, JsonParseError> { in err() argument113 fn unexpected_eof(&self) -> Result<char, JsonParseError> { in unexpected_eof() argument130 fn peek(&mut self) -> Result<char, JsonParseError> { in peek() argument151 fn consume(&mut self) -> Result<char, JsonParseError> { in consume() argument159 fn consume_no_skip(&mut self) -> Result<char, JsonParseError> { in consume_no_skip() argument[all …]
64 enum JsonParseError { enum
48 enum JsonParseError { enum
134 TEST_F(ServiceConfigTest, JsonParseError) { in TEST_F() argument