parse

Function parse 

Source
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.