pub trait CharExt {
// Required methods
fn is_identifier_start(self) -> bool;
fn is_identifier_continue(self) -> bool;
}Required Methods§
fn is_identifier_start(self) -> bool
fn is_identifier_continue(self) -> bool
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".