pub fn parse<ParserType, It>(
parser: &ParserType,
it: It,
) -> ParseResult<<ParserType as Parser<It>>::Output, It>where
It: InputIteratorTrait,
ParserType: Parser<It>,Expand description
Parse the input with the given parser.
pub fn parse<ParserType, It>(
parser: &ParserType,
it: It,
) -> ParseResult<<ParserType as Parser<It>>::Output, It>where
It: InputIteratorTrait,
ParserType: Parser<It>,Parse the input with the given parser.