Struct read_fonts::tables::gpos::PairValueRecord
source · pub struct PairValueRecord {
pub second_glyph: BigEndian<GlyphId16>,
pub value_record1: ValueRecord,
pub value_record2: ValueRecord,
}
Expand description
Part of PairSet
Fields§
§second_glyph: BigEndian<GlyphId16>
Glyph ID of second glyph in the pair (first glyph is listed in the Coverage table).
value_record1: ValueRecord
Positioning data for the first glyph in the pair.
value_record2: ValueRecord
Positioning data for the second glyph in the pair.
Implementations§
source§impl PairValueRecord
impl PairValueRecord
sourcepub fn second_glyph(&self) -> GlyphId16
pub fn second_glyph(&self) -> GlyphId16
Glyph ID of second glyph in the pair (first glyph is listed in the Coverage table).
sourcepub fn value_record1(&self) -> &ValueRecord
pub fn value_record1(&self) -> &ValueRecord
Positioning data for the first glyph in the pair.
sourcepub fn value_record2(&self) -> &ValueRecord
pub fn value_record2(&self) -> &ValueRecord
Positioning data for the second glyph in the pair.
source§impl<'a> PairValueRecord
impl<'a> PairValueRecord
sourcepub fn read(
data: FontData<'a>,
value_format1: ValueFormat,
value_format2: ValueFormat,
) -> Result<Self, ReadError>
pub fn read( data: FontData<'a>, value_format1: ValueFormat, value_format2: ValueFormat, ) -> Result<Self, ReadError>
A constructor that requires additional arguments.
This type requires some external state in order to be parsed.
Trait Implementations§
source§impl Clone for PairValueRecord
impl Clone for PairValueRecord
source§fn clone(&self) -> PairValueRecord
fn clone(&self) -> PairValueRecord
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 ComputeSize for PairValueRecord
impl ComputeSize for PairValueRecord
source§fn compute_size(args: &(ValueFormat, ValueFormat)) -> Result<usize, ReadError>
fn compute_size(args: &(ValueFormat, ValueFormat)) -> Result<usize, ReadError>
Compute the number of bytes required to represent this type.
source§impl Debug for PairValueRecord
impl Debug for PairValueRecord
source§impl<'a> FontReadWithArgs<'a> for PairValueRecord
impl<'a> FontReadWithArgs<'a> for PairValueRecord
source§fn read_with_args(
data: FontData<'a>,
args: &(ValueFormat, ValueFormat),
) -> Result<Self, ReadError>
fn read_with_args( data: FontData<'a>, args: &(ValueFormat, ValueFormat), ) -> Result<Self, ReadError>
read an item, using the provided args. Read more
source§impl ReadArgs for PairValueRecord
impl ReadArgs for PairValueRecord
type Args = (ValueFormat, ValueFormat)
source§impl<'a> SomeRecord<'a> for PairValueRecord
impl<'a> SomeRecord<'a> for PairValueRecord
fn traverse(self, data: FontData<'a>) -> RecordResolver<'a>
Auto Trait Implementations§
impl Freeze for PairValueRecord
impl RefUnwindSafe for PairValueRecord
impl Send for PairValueRecord
impl Sync for PairValueRecord
impl Unpin for PairValueRecord
impl UnwindSafe for PairValueRecord
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)