Lines Matching defs:Input
58 pub fn any<Input, Error>(input: &mut Input) -> PResult<<Input as Stream>::Token, Error> in any()
61 Error: ParserError<Input>, in any()
164 pub fn literal<Literal, Input, Error>( in literal() argument
166 ) -> impl Parser<Input, <Input as Stream>::Slice, Error> in literal()
170 Error: ParserError<Input>, in literal()
270 pub fn one_of<Input, Set, Error>(set: Set) -> impl Parser<Input, <Input as Stream>::Token, Error> in one_of()
275 Error: ParserError<Input>, in one_of()
323 pub fn none_of<Input, Set, Error>(set: Set) -> impl Parser<Input, <Input as Stream>::Token, Error> in none_of()
328 Error: ParserError<Input>, in none_of()
486 pub fn take_while<Set, Input, Error>( in take_while() argument
489 ) -> impl Parser<Input, <Input as Stream>::Slice, Error> in take_while()
493 Error: ParserError<Input>, in take_while()
678 pub fn take_till<Set, Input, Error>( in take_till() argument
681 ) -> impl Parser<Input, <Input as Stream>::Slice, Error> in take_till()
685 Error: ParserError<Input>, in take_till()
790 pub fn take<UsizeLike, Input, Error>( in take() argument
792 ) -> impl Parser<Input, <Input as Stream>::Slice, Error> in take()
796 Error: ParserError<Input>, in take()
918 pub fn take_until<Literal, Input, Error>( in take_until() argument
921 ) -> impl Parser<Input, <Input as Stream>::Slice, Error> in take_until()
925 Error: ParserError<Input>, in take_until()
1057 pub fn rest<Input, Error>(input: &mut Input) -> PResult<<Input as Stream>::Slice, Error> in rest()
1060 Error: ParserError<Input>, in rest()
1095 pub fn rest_len<Input, Error>(input: &mut Input) -> PResult<usize, Error> in rest_len()
1098 Error: ParserError<Input>, in rest_len()