pub trait UnicodeSpec {
    fn is_xid_start(&self) -> bool;
    fn is_xid_continue(&self) -> bool;
    fn is_whitespace(&self) -> bool;
}

Required Methods

Implementations on Foreign Types

Implementors