pub trait XmlParseExt<'a> {
    fn consume_space(&self) -> Progress<StringPoint<'a>, &'a str, ()>;
    fn consume_decimal_chars(&self) -> Progress<StringPoint<'a>, &'a str, ()>;
    fn consume_ncname(&self) -> Progress<StringPoint<'a>, &'a str, ()>;
    fn consume_prefixed_name(
        &self
    ) -> Progress<StringPoint<'a>, PrefixedName<'a>, ()>; }
Expand description

Common reusable XML parsing methods

Required Methods§

Parse XML whitespace

Parse XML decimal characters

Parse an XML NCName

Parse an XML prefixed name

Implementations on Foreign Types§

Implementors§