pub trait GeneralCategoryExt {
// Required methods
fn to_rb(&self) -> u32;
fn from_rb(gc: u32) -> Self;
fn is_mark(&self) -> bool;
fn is_letter(&self) -> bool;
}
Required Methods§
fn to_rb(&self) -> u32
fn from_rb(gc: u32) -> Self
fn is_mark(&self) -> bool
fn is_letter(&self) -> bool
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.