struct InsertionCtx<'a> {
mark: u32,
glyphs: LazyArray32<'a, GlyphId>,
}Fields§
§mark: u32§glyphs: LazyArray32<'a, GlyphId>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 driver_context_t<InsertionEntryData> for InsertionCtx<'_>
impl driver_context_t<InsertionEntryData> for InsertionCtx<'_>
fn in_place(&self) -> bool
fn can_advance(&self, entry: &GenericStateEntry<InsertionEntryData>) -> bool
fn is_actionable( &self, entry: &GenericStateEntry<InsertionEntryData>, _: &hb_buffer_t, ) -> bool
fn transition( &mut self, entry: &GenericStateEntry<InsertionEntryData>, buffer: &mut hb_buffer_t, ) -> 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