Home
last modified time | relevance | path

Searched defs:NilError (Results 1 – 2 of 2) sorted by relevance

/external/rust/crates/nom/src/multi/
Dtests.rs305 pub struct NilError; struct
307 impl<I> From<(I, ErrorKind)> for NilError { implementation
313 impl<I> ParseError<I> for NilError { implementation
314 fn from_error_kind(_: I, _: ErrorKind) -> NilError { in from_error_kind()
317 fn append(_: I, _: ErrorKind, _: NilError) -> NilError { in append()
/external/rust/crates/winnow/src/combinator/
Dtests.rs1179 pub struct NilError; struct
1181 impl<I> From<(I, ErrorKind)> for NilError { implementation
1187 impl<I> ParserError<I> for NilError { implementation
1188 fn from_error_kind(_: &I, _: ErrorKind) -> NilError { in from_error_kind()
1191 fn append(self, _: &I, _: ErrorKind) -> NilError { in append()