Lines Matching refs:ParseError
8 error::{context, convert_error, ContextError, ErrorKind, ParseError, VerboseError},
30 fn sp<'a, E: ParseError<&'a str>>(i: &'a str) -> IResult<&'a str, &'a str, E> {
53 fn parse_str<'a, E: ParseError<&'a str>>(i: &'a str) -> IResult<&'a str, &'a str, E> {
65 fn boolean<'a, E: ParseError<&'a str>>(input: &'a str) -> IResult<&'a str, bool, E> {
79 fn null<'a, E: ParseError<&'a str>>(input: &'a str) -> IResult<&'a str, (), E> {
94 fn string<'a, E: ParseError<&'a str> + ContextError<&'a str>>(
107 fn array<'a, E: ParseError<&'a str> + ContextError<&'a str>>(
122 fn key_value<'a, E: ParseError<&'a str> + ContextError<&'a str>>(
132 fn hash<'a, E: ParseError<&'a str> + ContextError<&'a str>>(
156 fn json_value<'a, E: ParseError<&'a str> + ContextError<&'a str>>(
173 fn root<'a, E: ParseError<&'a str> + ContextError<&'a str>>(