Lines Matching refs:ParseError
6 use crate::error::ParseError;
29 pub fn pair<I, O1, O2, E: ParseError<I>, F, G>(
63 pub fn preceded<I, O1, O2, E: ParseError<I>, F, G>(
97 pub fn terminated<I, O1, O2, E: ParseError<I>, F, G>(
133 pub fn separated_pair<I, O1, O2, O3, E: ParseError<I>, F, G, H>(
172 pub fn delimited<I, O1, O2, O3, E: ParseError<I>, F, G, H>(
197 impl<Input, Output, Error: ParseError<Input>, F: Parser<Input, Output, Error>>
222 Input: Clone, $($ty),+ , Error: ParseError<Input>,
258 impl<I, E: ParseError<I>> Tuple<I, (), E> for () {
275 pub fn tuple<I, O, E: ParseError<I>, List: Tuple<I, O, E>>(