pub struct GsubTable<'a> {
pub table: Gsub<'a>,
pub lookups: &'a LookupCache,
}Fields§
§table: Gsub<'a>§lookups: &'a LookupCacheTrait Implementations§
Source§impl LayoutTable for GsubTable<'_>
impl LayoutTable for GsubTable<'_>
Source§const INDEX: TableIndex = TableIndex::GSUB
const INDEX: TableIndex = TableIndex::GSUB
The index of this table.
Source§const IN_PLACE: bool = false
const IN_PLACE: bool = false
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 GsubTable<'a>
impl<'a> RefUnwindSafe for GsubTable<'a>
impl<'a> Send for GsubTable<'a>
impl<'a> Sync for GsubTable<'a>
impl<'a> Unpin for GsubTable<'a>
impl<'a> UnsafeUnpin for GsubTable<'a>
impl<'a> UnwindSafe for GsubTable<'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