pub trait XmlExt {
// Required method
fn is_xml_whitespace(&self) -> bool;
}Expand description
Extension trait that adds XML whitespace detection to char.
Required Methods§
Sourcefn is_xml_whitespace(&self) -> bool
fn is_xml_whitespace(&self) -> bool
Returns true for the four XML whitespace characters: space, tab,
carriage return, and newline.