struct LigatureCtx<'a> {
table: LigatureSubtable<'a>,
match_length: usize,
match_positions: [usize; 64],
}Fields§
§table: LigatureSubtable<'a>§match_length: usize§match_positions: [usize; 64]Implementations§
Source§impl LigatureCtx<'_>
impl LigatureCtx<'_>
const SET_COMPONENT: u16 = 0x8000
const DONT_ADVANCE: u16 = 0x4000
const PERFORM_ACTION: u16 = 0x2000
const LIG_ACTION_LAST: u32 = 0x8000_0000
const LIG_ACTION_STORE: u32 = 0x4000_0000
const LIG_ACTION_OFFSET: u32 = 0x3FFF_FFFF
Trait Implementations§
Source§impl DriverContext<BigEndian<u16>> for LigatureCtx<'_>
impl DriverContext<BigEndian<u16>> for LigatureCtx<'_>
fn in_place() -> bool
fn can_advance(entry: &StateEntry<BigEndian<u16>>) -> bool
fn is_action_initiable(entry: &StateEntry<BigEndian<u16>>) -> bool
fn is_actionable(entry: &StateEntry<BigEndian<u16>>) -> bool
fn transition( &mut self, entry: &StateEntry<BigEndian<u16>>, ac: &mut AatApplyContext<'_>, ) -> Option<()>
Auto Trait Implementations§
impl<'a> Freeze for LigatureCtx<'a>
impl<'a> RefUnwindSafe for LigatureCtx<'a>
impl<'a> Send for LigatureCtx<'a>
impl<'a> Sync for LigatureCtx<'a>
impl<'a> Unpin for LigatureCtx<'a>
impl<'a> UnsafeUnpin for LigatureCtx<'a>
impl<'a> UnwindSafe for LigatureCtx<'a>
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