Trait sxd_document::XmlChar [] [src]

pub trait XmlChar {
    fn is_name_start_char(self) -> bool;
    fn is_name_char(self) -> bool;
    fn is_ncname_start_char(self) -> bool;
    fn is_ncname_char(self) -> bool;
    fn is_space_char(self) -> bool;
    fn is_decimal_char(self) -> bool;
    fn is_hex_char(self) -> bool;
    fn is_encoding_start_char(self) -> bool;
    fn is_encoding_rest_char(self) -> bool;
}

Predicates used when parsing an characters in an XML document.

Required Methods

Is this a NameStartChar?

Is this a NameChar?

Does this start a NCName?

Is this a component of a NCName?

Is this an XML space?

Implementors