trait XmlByteExt {
// Required methods
fn is_xml_space(&self) -> bool;
fn is_xml_name_start(&self) -> bool;
fn is_xml_name(&self) -> bool;
fn is_xml_char(&self) -> bool;
}Required Methods§
Sourcefn is_xml_space(&self) -> bool
fn is_xml_space(&self) -> bool
Checks if byte is a space.
[ \r\n\t]
Sourcefn is_xml_name_start(&self) -> bool
fn is_xml_name_start(&self) -> bool
Checks if the value is within the NameStartChar range.
Sourcefn is_xml_name(&self) -> bool
fn is_xml_name(&self) -> bool
Checks if byte is within the ASCII Char range.
Sourcefn is_xml_char(&self) -> bool
fn is_xml_char(&self) -> bool
Checks if the value is within the Char range.