pub struct feature_map_t {
    tag: Tag,
    index: [Option<FeatureIndex>; 2],
    stage: [usize; 2],
    shift: u32,
    mask: u32,
    one_mask: u32,
    auto_zwnj: bool,
    auto_zwj: bool,
    random: bool,
    per_syllable: bool,
}Fields§
§tag: Tag§index: [Option<FeatureIndex>; 2]§stage: [usize; 2]§shift: u32§mask: u32§one_mask: u32§auto_zwnj: bool§auto_zwj: bool§random: bool§per_syllable: boolTrait Implementations§
Source§impl Clone for feature_map_t
 
impl Clone for feature_map_t
Source§fn clone(&self) -> feature_map_t
 
fn clone(&self) -> feature_map_t
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moreSource§impl Debug for feature_map_t
 
impl Debug for feature_map_t
Source§impl Ord for feature_map_t
 
impl Ord for feature_map_t
Source§impl PartialEq for feature_map_t
 
impl PartialEq for feature_map_t
Source§impl PartialOrd for feature_map_t
 
impl PartialOrd for feature_map_t
impl Copy for feature_map_t
impl Eq for feature_map_t
impl StructuralPartialEq for feature_map_t
Auto Trait Implementations§
impl Freeze for feature_map_t
impl RefUnwindSafe for feature_map_t
impl Send for feature_map_t
impl Sync for feature_map_t
impl Unpin for feature_map_t
impl UnwindSafe for feature_map_t
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