Struct owned_ttf_parser::vvar::Table
source · pub struct Table<'a> {
data: &'a [u8],
variation_store: ItemVariationStore<'a>,
advance_height_mapping_offset: Option<Offset32>,
tsb_mapping_offset: Option<Offset32>,
bsb_mapping_offset: Option<Offset32>,
vorg_mapping_offset: Option<Offset32>,
}
Expand description
Fields§
§data: &'a [u8]
§variation_store: ItemVariationStore<'a>
§advance_height_mapping_offset: Option<Offset32>
§tsb_mapping_offset: Option<Offset32>
§bsb_mapping_offset: Option<Offset32>
§vorg_mapping_offset: Option<Offset32>
Implementations§
source§impl<'a> Table<'a>
impl<'a> Table<'a>
sourcepub fn advance_offset(
&self,
glyph_id: GlyphId,
coordinates: &[NormalizedCoordinate],
) -> Option<f32>
pub fn advance_offset( &self, glyph_id: GlyphId, coordinates: &[NormalizedCoordinate], ) -> Option<f32>
Returns the advance height offset for a glyph.
sourcepub fn top_side_bearing_offset(
&self,
glyph_id: GlyphId,
coordinates: &[NormalizedCoordinate],
) -> Option<f32>
pub fn top_side_bearing_offset( &self, glyph_id: GlyphId, coordinates: &[NormalizedCoordinate], ) -> Option<f32>
Returns the top side bearing offset for a glyph.
sourcepub fn bottom_side_bearing_offset(
&self,
glyph_id: GlyphId,
coordinates: &[NormalizedCoordinate],
) -> Option<f32>
pub fn bottom_side_bearing_offset( &self, glyph_id: GlyphId, coordinates: &[NormalizedCoordinate], ) -> Option<f32>
Returns the bottom side bearing offset for a glyph.
sourcepub fn vertical_origin_offset(
&self,
glyph_id: GlyphId,
coordinates: &[NormalizedCoordinate],
) -> Option<f32>
pub fn vertical_origin_offset( &self, glyph_id: GlyphId, coordinates: &[NormalizedCoordinate], ) -> Option<f32>
Returns the vertical origin offset for a glyph.
Trait Implementations§
impl<'a> Copy for Table<'a>
Auto Trait Implementations§
impl<'a> Freeze for Table<'a>
impl<'a> RefUnwindSafe for Table<'a>
impl<'a> Send for Table<'a>
impl<'a> Sync for Table<'a>
impl<'a> Unpin for Table<'a>
impl<'a> UnwindSafe for Table<'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