Trait xmlparser::XmlCharExt

source ·
pub trait XmlCharExt {
    // Required methods
    fn is_xml_name_start(&self) -> bool;
    fn is_xml_name(&self) -> bool;
    fn is_xml_char(&self) -> bool;
}
Expand description

Extension methods for XML-subset only operations.

Required Methods§

source

fn is_xml_name_start(&self) -> bool

Checks if the value is within the NameStartChar range.

source

fn is_xml_name(&self) -> bool

Checks if the value is within the NameChar range.

source

fn is_xml_char(&self) -> bool

Checks if the value is within the Char range.

Implementations on Foreign Types§

source§

impl XmlCharExt for char

Implementors§