Struct precis_tools::BidiClassGen
source · pub struct BidiClassGen { /* private fields */ }
Expand description
Generates a table of tuples (Codepoints
, BidiClass
) representing
the values of the Unicode character property
Bidi_Class
.
Possible values are listed in
UAX44
, Table 13.
Implementations§
source§impl BidiClassGen
impl BidiClassGen
sourcepub fn new(table_name: &str) -> Self
pub fn new(table_name: &str) -> Self
Creates a new BidiClassGen
Trait Implementations§
source§impl CodeGen for BidiClassGen
impl CodeGen for BidiClassGen
source§impl UcdLineParser<UnicodeData> for BidiClassGen
impl UcdLineParser<UnicodeData> for BidiClassGen
source§fn process_entry(&mut self, udata: &UnicodeData) -> Result<(), Error>
fn process_entry(&mut self, udata: &UnicodeData) -> Result<(), Error>
Process an entry in the
UCD
file. Read moreAuto Trait Implementations§
impl Freeze for BidiClassGen
impl RefUnwindSafe for BidiClassGen
impl Send for BidiClassGen
impl Sync for BidiClassGen
impl Unpin for BidiClassGen
impl UnwindSafe for BidiClassGen
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more