diff options
Diffstat (limited to 'src/xml/parsers_complete.rs')
-rw-r--r-- | src/xml/parsers_complete.rs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/xml/parsers_complete.rs b/src/xml/parsers_complete.rs index b057f62..900a3dd 100644 --- a/src/xml/parsers_complete.rs +++ b/src/xml/parsers_complete.rs @@ -30,6 +30,19 @@ pub trait Parser<'s> { type Output; fn parse(input: &'s str) -> IResult<&str, Self::Output>; + + fn parse_full(input: &'s str) -> crate::Result<Self::Output> { + match <Self as Parser>::parse(input) { + Ok((rest, output)) => { + if rest.is_empty() { + return Ok(output); + } else { + return Err(crate::error::Error::ExtraData(rest.to_string())); + } + } + Result::Err(e) => return Err(crate::error::Error::ParseError(e.to_string())), + } + } } /// [1] NSAttName ::= PrefixedAttName | DefaultAttName |