[][src]Function rune::parse_all

pub fn parse_all<T>(source: &str) -> Result<ParseAll<'_, T>, ParseError> where
    T: Parse

Parse the given input as the given type that implements Parse.

This required the whole input to be parsed.

Returns the wrapped source and the parsed type.