struct InsertionCtx<'a> {
mark: u32,
glyphs: &'a [BigEndian<GlyphId16>],
}Fields§
§mark: u32§glyphs: &'a [BigEndian<GlyphId16>]Implementations§
Source§impl InsertionCtx<'_>
impl InsertionCtx<'_>
const SET_MARK: u16 = 0x8000
const DONT_ADVANCE: u16 = 0x4000
const CURRENT_INSERT_BEFORE: u16 = 0x0800
const MARKED_INSERT_BEFORE: u16 = 0x0400
const CURRENT_INSERT_COUNT: u16 = 0x03E0
const MARKED_INSERT_COUNT: u16 = 0x001F
Trait Implementations§
Source§impl DriverContext<InsertionEntryData> for InsertionCtx<'_>
impl DriverContext<InsertionEntryData> for InsertionCtx<'_>
fn in_place() -> bool
fn can_advance(entry: &StateEntry<InsertionEntryData>) -> bool
fn is_action_initiable(entry: &StateEntry<InsertionEntryData>) -> bool
fn is_actionable(entry: &StateEntry<InsertionEntryData>) -> bool
fn transition( &mut self, entry: &StateEntry<InsertionEntryData>, ac: &mut AatApplyContext<'_>, ) -> Option<()>
Auto Trait Implementations§
impl<'a> Freeze for InsertionCtx<'a>
impl<'a> RefUnwindSafe for InsertionCtx<'a>
impl<'a> Send for InsertionCtx<'a>
impl<'a> Sync for InsertionCtx<'a>
impl<'a> Unpin for InsertionCtx<'a>
impl<'a> UnsafeUnpin for InsertionCtx<'a>
impl<'a> UnwindSafe for InsertionCtx<'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