parse

Function parse 

Source
pub fn parse<Stream, Context, Parser>(
    parser: Parser,
) -> impl Parse<Stream, Context, Token = Parser::Token>
where Parser: Parse<Stream, Context>, Parser::Token: Debug,
Expand description

Take a parser and return a Parser that will call parse on it.