Trait XmlByteExt

Source
trait XmlByteExt {
    // Required methods
    fn is_xml_space(&self) -> bool;
    fn is_xml_name(&self) -> bool;
}

Required Methods§

Source

fn is_xml_space(&self) -> bool

Checks if byte is a space.

[ \r\n\t]

Source

fn is_xml_name(&self) -> bool

Checks if byte is within the ASCII Char range.

Implementations on Foreign Types§

Source§

impl XmlByteExt for u8

Implementors§