[][src]Function rune::parse_all

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

Parse the given input as the given type that implements [Parse][crate::traits::Parse].

This required the whole input to be parsed.

Returns the wrapped source and the parsed type.