pub enum Subtable4Actions<'a> {
ControlPoints(&'a [BigEndian<u16>]),
AnchorPoints(&'a [BigEndian<u16>]),
ControlPointCoords(&'a [BigEndian<i16>]),
}
Expand description
Actions for the type 4 kerx
subtable.
Variants§
ControlPoints(&'a [BigEndian<u16>])
Sequence of glyph outline point indices.
AnchorPoints(&'a [BigEndian<u16>])
Sequence of indices into the ankr
table.
ControlPointCoords(&'a [BigEndian<i16>])
Sequence of coordinate values.
Trait Implementations§
Source§impl<'a> Clone for Subtable4Actions<'a>
impl<'a> Clone for Subtable4Actions<'a>
Source§fn clone(&self) -> Subtable4Actions<'a>
fn clone(&self) -> Subtable4Actions<'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 moreAuto Trait Implementations§
impl<'a> Freeze for Subtable4Actions<'a>
impl<'a> RefUnwindSafe for Subtable4Actions<'a>
impl<'a> Send for Subtable4Actions<'a>
impl<'a> Sync for Subtable4Actions<'a>
impl<'a> Unpin for Subtable4Actions<'a>
impl<'a> UnwindSafe for Subtable4Actions<'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