Lines Matching defs:ErrorKind
23 fn append(input: I, kind: ErrorKind, other: Self) -> Self; in append()
53 fn from_external_error(input: I, kind: ErrorKind, e: E) -> Self; in from_external_error()
77 fn append(_: I, _: ErrorKind, other: Self) -> Self { in append()
86 fn from_external_error(input: I, kind: ErrorKind, _e: E) -> Self { in from_external_error()
103 impl<I> ParseError<I> for (I, ErrorKind) { implementation
108 fn append(_: I, _: ErrorKind, other: Self) -> Self { in append()
113 impl<I> ContextError<I> for (I, ErrorKind) {} implementation
115 impl<I, E> FromExternalError<I, E> for (I, ErrorKind) { implementation
116 fn from_external_error(input: I, kind: ErrorKind, _e: E) -> Self { in from_external_error()
124 fn append(_: I, _: ErrorKind, _: Self) -> Self {} in append()
130 fn from_external_error(_input: I, _kind: ErrorKind, _e: E) -> Self {} in from_external_error()
141 pub fn append_error<I, E: ParseError<I>>(input: I, kind: ErrorKind, other: E) -> E { in append_error()
179 fn append(input: I, kind: ErrorKind, mut other: Self) -> Self { in append()
204 fn from_external_error(input: I, kind: ErrorKind, _e: E) -> Self { in from_external_error()
366 pub enum ErrorKind { enum
483 impl ErrorKind { implementation