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