pub trait BidiDataSource {
    fn bidi_class(&self, c: char) -> BidiClass;
}
Expand description

This trait abstracts over a data source that is able to produce the Unicode Bidi class for a given character

Required Methods

Implementors