pub struct GposTable<'a> {
pub table: Gpos<'a>,
pub lookups: &'a LookupCache,
}Fields§
§table: Gpos<'a>§lookups: &'a LookupCacheTrait Implementations§
Source§impl LayoutTable for GposTable<'_>
impl LayoutTable for GposTable<'_>
Source§const INDEX: TableIndex = TableIndex::GPOS
const INDEX: TableIndex = TableIndex::GPOS
The index of this table.
Source§const IN_PLACE: bool = true
const IN_PLACE: bool = true
Whether lookups in this table can be applied to the buffer in-place.
Source§fn get_lookup(&self, index: u16) -> Option<&LookupInfo>
fn get_lookup(&self, index: u16) -> Option<&LookupInfo>
Get the lookup at the specified index.
Auto Trait Implementations§
impl<'a> Freeze for GposTable<'a>
impl<'a> RefUnwindSafe for GposTable<'a>
impl<'a> Send for GposTable<'a>
impl<'a> Sync for GposTable<'a>
impl<'a> Unpin for GposTable<'a>
impl<'a> UnsafeUnpin for GposTable<'a>
impl<'a> UnwindSafe for GposTable<'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