Trait xmlparser::XmlCharExt[][src]

pub trait XmlCharExt {
    fn is_xml_name_start(&self) -> bool;
fn is_xml_name(&self) -> bool;
fn is_xml_char(&self) -> bool; }

Extension methods for XML-subset only operations.

Required Methods

Checks if the value is within the NameStartChar range.

Checks if the value is within the NameChar range.

Checks if the value is within the Char range.

Implementations on Foreign Types

impl XmlCharExt for char
[src]

Implementors