[][src]Trait sxd_document::XmlChar

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

fn is_name_start_char(self) -> bool

Is this a NameStartChar?

fn is_name_char(self) -> bool

Is this a NameChar?

fn is_ncname_start_char(self) -> bool

Does this start a NCName?

fn is_ncname_char(self) -> bool

Is this a component of a NCName?

fn is_space_char(self) -> bool

Is this an XML space?

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

Loading content...

Implementations on Foreign Types

impl XmlChar for char[src]

Loading content...

Implementors

Loading content...