pub struct PositioningTable<'a> {
pub inner: LayoutTable<'a>,
pub lookups: Vec<PositioningLookup<'a>>,
}
Fields§
§inner: LayoutTable<'a>
§lookups: Vec<PositioningLookup<'a>>
Implementations§
Source§impl<'a> PositioningTable<'a>
impl<'a> PositioningTable<'a>
pub fn new(inner: LayoutTable<'a>) -> Self
Trait Implementations§
Source§impl<'a> Clone for PositioningTable<'a>
impl<'a> Clone for PositioningTable<'a>
Source§fn clone(&self) -> PositioningTable<'a>
fn clone(&self) -> PositioningTable<'a>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'a> LayoutTable for PositioningTable<'a>
impl<'a> LayoutTable for PositioningTable<'a>
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§type Lookup = PositioningLookup<'a>
type Lookup = PositioningLookup<'a>
The kind of lookup stored in this table.
Source§fn get_lookup(&self, index: LookupIndex) -> Option<&Self::Lookup>
fn get_lookup(&self, index: LookupIndex) -> Option<&Self::Lookup>
Get the lookup at the specified index.
Auto Trait Implementations§
impl<'a> Freeze for PositioningTable<'a>
impl<'a> RefUnwindSafe for PositioningTable<'a>
impl<'a> Send for PositioningTable<'a>
impl<'a> Sync for PositioningTable<'a>
impl<'a> Unpin for PositioningTable<'a>
impl<'a> UnwindSafe for PositioningTable<'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