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 = 32_768u16
const DONT_ADVANCE: u16 = 16_384u16
const CURRENT_INSERT_BEFORE: u16 = 2_048u16
const MARKED_INSERT_BEFORE: u16 = 1_024u16
const CURRENT_INSERT_COUNT: u16 = 992u16
const MARKED_INSERT_COUNT: u16 = 31u16
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> 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