Trait xmlparser::XmlByteExt [−][src]
pub trait XmlByteExt {
fn is_xml_digit(&self) -> bool;
fn is_xml_hex_digit(&self) -> bool;
fn is_xml_space(&self) -> bool;
fn is_xml_letter(&self) -> bool;
}Extension methods for XML-subset only operations.
Required Methods
fn is_xml_digit(&self) -> bool
Checks if a byte is a digit.
[0-9]
fn is_xml_hex_digit(&self) -> bool
Checks if a byte is a hex digit.
[0-9A-Fa-f]
fn is_xml_space(&self) -> bool
Checks if a byte is a space.
[ \r\n\t]
fn is_xml_letter(&self) -> bool
Checks if a byte is an ASCII char.
[A-Za-z]
Implementations on Foreign Types
impl XmlByteExt for u8[src]
impl XmlByteExt for u8fn is_xml_digit(&self) -> bool[src]
fn is_xml_digit(&self) -> boolfn is_xml_hex_digit(&self) -> bool[src]
fn is_xml_hex_digit(&self) -> boolfn is_xml_space(&self) -> bool[src]
fn is_xml_space(&self) -> boolfn is_xml_letter(&self) -> bool[src]
fn is_xml_letter(&self) -> bool