pub trait UnicodeXID {
    // Required methods
    fn is_xid_start(self) -> bool;
    fn is_xid_continue(self) -> bool;
}
Expand description

Methods for determining if a character is a valid identifier character.

Required Methods§

source

fn is_xid_start(self) -> bool

Returns whether the specified character satisfies the ‘XID_Start’ Unicode property.

‘XID_Start’ is a Unicode Derived Property specified in UAX #31, mostly similar to ID_Start but modified for closure under NFKx.

source

fn is_xid_continue(self) -> bool

Returns whether the specified char satisfies the ‘XID_Continue’ Unicode property.

‘XID_Continue’ is a Unicode Derived Property specified in UAX #31, mostly similar to ‘ID_Continue’ but modified for closure under NFKx.

Implementations on Foreign Types§

source§

impl UnicodeXID for char

Implementors§