Trait GeneralCategoryExt

Source
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§

Source

fn to_rb(&self) -> u32

Source

fn from_rb(gc: u32) -> Self

Source

fn is_mark(&self) -> bool

Source

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.

Implementors§