pub enum PositioningSubtable<'a> {
Single(SingleAdjustment<'a>),
Pair(PairAdjustment<'a>),
Cursive(CursiveAdjustment<'a>),
MarkToBase(MarkToBaseAdjustment<'a>),
MarkToLigature(MarkToLigatureAdjustment<'a>),
MarkToMark(MarkToMarkAdjustment<'a>),
Context(ContextLookup<'a>),
ChainContext(ChainedContextLookup<'a>),
}
Expand description
A glyph positioning lookup subtable enumeration.
Variants§
Single(SingleAdjustment<'a>)
Pair(PairAdjustment<'a>)
Cursive(CursiveAdjustment<'a>)
MarkToBase(MarkToBaseAdjustment<'a>)
MarkToLigature(MarkToLigatureAdjustment<'a>)
MarkToMark(MarkToMarkAdjustment<'a>)
Context(ContextLookup<'a>)
ChainContext(ChainedContextLookup<'a>)
Implementations§
Trait Implementations§
source§impl<'a> Clone for PositioningSubtable<'a>
impl<'a> Clone for PositioningSubtable<'a>
source§fn clone(&self) -> PositioningSubtable<'a>
fn clone(&self) -> PositioningSubtable<'a>
Returns a copy 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> Debug for PositioningSubtable<'a>
impl<'a> Debug for PositioningSubtable<'a>
source§impl<'a> LookupSubtable<'a> for PositioningSubtable<'a>
impl<'a> LookupSubtable<'a> for PositioningSubtable<'a>
impl<'a> Copy for PositioningSubtable<'a>
Auto Trait Implementations§
impl<'a> Freeze for PositioningSubtable<'a>
impl<'a> RefUnwindSafe for PositioningSubtable<'a>
impl<'a> Send for PositioningSubtable<'a>
impl<'a> Sync for PositioningSubtable<'a>
impl<'a> Unpin for PositioningSubtable<'a>
impl<'a> UnwindSafe for PositioningSubtable<'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