pub struct AatTables<'a> {
pub morx: Option<(Morx<'a>, &'a [MorxSubtableCache])>,
pub ankr: Option<Ankr<'a>>,
pub kern: Option<(Kern<'a>, &'a [KernSubtableCache])>,
pub kerx: Option<(Kerx<'a>, &'a [KerxSubtableCache])>,
pub trak: Option<Trak<'a>>,
pub feat: Option<Feat<'a>>,
}Fields§
§morx: Option<(Morx<'a>, &'a [MorxSubtableCache])>§ankr: Option<Ankr<'a>>§kern: Option<(Kern<'a>, &'a [KernSubtableCache])>§kerx: Option<(Kerx<'a>, &'a [KerxSubtableCache])>§trak: Option<Trak<'a>>§feat: Option<Feat<'a>>Implementations§
Source§impl<'a> AatTables<'a>
impl<'a> AatTables<'a>
pub fn new( font: &FontRef<'a>, cache: &'a AatCache, table_ranges: &TableRanges, ) -> Self
pub fn from_tables( font: &impl TableProvider<'a>, ot_tables: &OtTables<'_>, cache: &'a AatCache, ) -> Self
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for AatTables<'a>
impl<'a> RefUnwindSafe for AatTables<'a>
impl<'a> Send for AatTables<'a>
impl<'a> Sync for AatTables<'a>
impl<'a> Unpin for AatTables<'a>
impl<'a> UnsafeUnpin for AatTables<'a>
impl<'a> UnwindSafe for AatTables<'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